Skip to content

Commit 6982f03

Browse files
authored
Revert "Disable one flaky tests in emulator. (#1205)"
This reverts commit 19660d9.
1 parent da0f44f commit 6982f03

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

test/integration/auth.spec.ts

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -441,12 +441,8 @@ describe('admin.auth', () => {
441441
.then((listUsersResult) => {
442442
// Confirm expected number of users.
443443
expect(listUsersResult.users.length).to.equal(2);
444-
// TODO(yuchenshi): Investigate on why this is flaky in emulator.
445-
if (!authEmulatorHost) {
446-
// Confirm next page token present.
447-
expect(typeof listUsersResult.pageToken).to.equal('string');
448-
}
449-
444+
// Confirm next page token present.
445+
expect(typeof listUsersResult.pageToken).to.equal('string');
450446
// Confirm each user's uid and the hashed passwords.
451447
expect(listUsersResult.users[0].uid).to.equal(uids[1]);
452448

0 commit comments

Comments
 (0)