mirror of
https://github.com/callstack/react-native-testing-library.git
synced 2026-09-18 23:09:04 +08:00
f7c8400246
Co-authored-by: Maciej Jastrzebski <mdjastrzebski@gmail.com>
11 lines
264 B
TypeScript
11 lines
264 B
TypeScript
import { resetToDefaults } from './src/pure';
|
|
|
|
jest.mock('react-native/Libraries/Animated/NativeAnimatedHelper');
|
|
|
|
beforeEach(() => {
|
|
resetToDefaults();
|
|
});
|
|
|
|
// Disable colors in our local tests in order to generate clear snapshots
|
|
process.env.COLORS = 'false';
|