create-expo-cljs-app
Version:
Create a react native application with Expo and Shadow-CLJS!
19 lines (13 loc) • 433 B
JavaScript
/* eslint-env jasmine, jest */
;
global.__DEV__ = true;
const mockEmptyObject = {};
// Make sure snapshots contain the original style objects
jest.mock('../dist/cjs/exports/StyleSheet/ReactNativePropRegistry', () => ({
register: (id) => id,
getByID: () => mockEmptyObject
}));
jest.mock('../dist/exports/StyleSheet/ReactNativePropRegistry', () => ({
register: (id) => id,
getByID: () => mockEmptyObject
}));