-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(other): Add Auth support (#7878)
Co-authored-by: Salakar <[email protected]>
- Loading branch information
Showing
10 changed files
with
1,097 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
// We need to share firebase imports between modules, otherwise | ||
// apps and instances of the firebase modules are not shared. | ||
export * from 'firebase/app'; | ||
export * from 'firebase/auth'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,11 @@ const TEST_EMAIL = '[email protected]'; | |
const TEST_PASS = 'test1234'; | ||
|
||
describe('multi-factor modular', function () { | ||
// Other does not support multi-factor | ||
if (Platform.other) { | ||
return; | ||
} | ||
|
||
describe('firebase v8 compatibility', function () { | ||
beforeEach(async function () { | ||
await clearAllUsers(); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.