[tests][auth] remove fetchProvidersForEmail usage - fn no longer exists

This commit is contained in:
Salakar
2018-09-25 19:03:00 +01:00
parent 6e7feaa7e8
commit 6ac1ae8e88

View File

@@ -943,7 +943,7 @@ describe('auth()', () => {
});
});
describe('fetchProvidersForEmail/fetchSignInMethodsForEmail()', () => {
describe('fetchSignInMethodsForEmail()', () => {
it('it should return password provider for an email address', () =>
new Promise((resolve, reject) => {
const successCb = providers => {
@@ -958,7 +958,7 @@ describe('auth()', () => {
return firebase
.auth()
.fetchProvidersForEmail('test@test.com')
.fetchSignInMethodsForEmail('test@test.com')
.then(successCb)
.catch(failureCb);
}));