-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into tgolen-refactor-hocsideloading
- Loading branch information
Showing
103 changed files
with
4,883 additions
and
1,187 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
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 was deleted.
Oops, something went wrong.
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,15 @@ | ||
import type {FirebaseCrashlyticsTypes} from '@react-native-firebase/crashlytics'; | ||
|
||
type CrashlyticsModule = Pick<FirebaseCrashlyticsTypes.Module, 'log' | 'recordError' | 'setCrashlyticsCollectionEnabled'>; | ||
|
||
type CrashlyticsMock = () => CrashlyticsModule; | ||
|
||
// <App> uses <ErrorBoundary> and we need to mock the imported crashlytics module | ||
// due to an error that happens otherwise https://github.com/invertase/react-native-firebase/issues/2475 | ||
const crashlyticsMock: CrashlyticsMock = () => ({ | ||
log: jest.fn(), | ||
recordError: jest.fn(), | ||
setCrashlyticsCollectionEnabled: jest.fn(), | ||
}); | ||
|
||
export default crashlyticsMock; |
This file was deleted.
Oops, something went wrong.
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,8 @@ | ||
import type {Freeze as FreezeComponent} from 'react-freeze'; | ||
|
||
const Freeze: typeof FreezeComponent = (props) => props.children as JSX.Element; | ||
|
||
export { | ||
// eslint-disable-next-line import/prefer-default-export | ||
Freeze, | ||
}; |
This file was deleted.
Oops, something went wrong.
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,11 @@ | ||
import type {addItem} from 'react-native-dev-menu'; | ||
|
||
type ReactNativeDevMenuMock = { | ||
addItem: typeof addItem; | ||
}; | ||
|
||
const reactNativeDevMenuMock: ReactNativeDevMenuMock = { | ||
addItem: jest.fn(), | ||
}; | ||
|
||
export default reactNativeDevMenuMock; |
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.