Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Skip new unsupported tests.
  • Loading branch information
yuchenshi committed Feb 10, 2021
commit d053f3e50b44ddface7e2bec416e9d0491eda995
10 changes: 8 additions & 2 deletions test/integration/auth.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,10 @@ describe('admin.auth', () => {
});
});

it('can link/unlink with a federated provider', async () => {
it('can link/unlink with a federated provider', async function () {
if (authEmulatorHost) {
return this.skip(); // Not yet supported in Auth Emulator.
}
const googleFederatedUid = 'google_uid_' + generateRandomString(10);
let userRecord = await admin.auth().updateUser(updateUser.uid, {
providerToLink: {
Expand All @@ -707,7 +710,10 @@ describe('admin.auth', () => {
expect(providerIds).to.not.deep.include('google.com');
});

it('can unlink multiple providers at once, incl a non-federated provider', async () => {
it('can unlink multiple providers at once, incl a non-federated provider', async function () {
if (authEmulatorHost) {
return this.skip(); // Not yet supported in Auth Emulator.
}
await deletePhoneNumberUser('+15555550001');

const googleFederatedUid = 'google_uid_' + generateRandomString(10);
Expand Down