We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da0f44f commit 6982f03Copy full SHA for 6982f03
test/integration/auth.spec.ts
@@ -441,12 +441,8 @@ describe('admin.auth', () => {
441
.then((listUsersResult) => {
442
// Confirm expected number of users.
443
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
-
+ // Confirm next page token present.
+ expect(typeof listUsersResult.pageToken).to.equal('string');
450
// Confirm each user's uid and the hashed passwords.
451
expect(listUsersResult.users[0].uid).to.equal(uids[1]);
452
0 commit comments