mirror of
https://github.com/callstack/react-native-testing-library.git
synced 2026-09-18 23:09:04 +08:00
383c241d2e
* feat!: enable concurrent rendering by default * chore: tweaks
10 lines
232 B
TypeScript
10 lines
232 B
TypeScript
import { resetToDefaults, configure } from './src/pure';
|
|
import './src/matchers/extend-expect';
|
|
|
|
beforeEach(() => {
|
|
resetToDefaults();
|
|
if (process.env.CONCURRENT_MODE === '0') {
|
|
configure({ concurrentRoot: false });
|
|
}
|
|
});
|