expo
Version:
24 lines (21 loc) • 785 B
text/typescript
import 'react-native';
import '../Expo.fx';
import { Platform } from 'expo-modules-core';
jest.mock('../async-require/getDevServer');
if (Platform.OS === 'web') {
it('provides a helpful error message on web', () => {
const error =
/Your web project is importing a module from 'react-native' instead of 'react-native-web'/;
// @ts-ignore
expect(() => global.__fbBatchedBridgeConfig).toThrow(error);
// @ts-ignore
expect(() => globalThis.__fbBatchedBridgeConfig).toThrow(error);
});
} else {
it(`does not change the functionality of __fbBatchedBridgeConfig on native`, () => {
// @ts-ignore
expect(() => global.__fbBatchedBridgeConfig).not.toThrow();
// @ts-ignore
expect(() => globalThis.__fbBatchedBridgeConfig).not.toThrow();
});
}