From 6ac1ae8e882f1647ecb73556389bc182b88b2634 Mon Sep 17 00:00:00 2001 From: Salakar Date: Tue, 25 Sep 2018 19:03:00 +0100 Subject: [PATCH] [tests][auth] remove fetchProvidersForEmail usage - fn no longer exists --- tests/e2e/auth/auth.e2e.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/e2e/auth/auth.e2e.js b/tests/e2e/auth/auth.e2e.js index 2fb9c9b1..45614d55 100644 --- a/tests/e2e/auth/auth.e2e.js +++ b/tests/e2e/auth/auth.e2e.js @@ -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); }));