@@ -2937,11 +2937,15 @@ export function warnIfNotScopedWithMatchingAct(fiber: Fiber): void {
2937
2937
"It looks like you're using the wrong act() around your test interactions.\n" +
2938
2938
'Be sure to use the matching version of act() corresponding to your renderer:\n\n' +
2939
2939
'// for react-dom:\n' +
2940
- "import {act} from 'react-dom/test-utils';\n" +
2940
+ // Break up imports to avoid accidentally parsing them as dependencies.
2941
+ 'import {act} fr' +
2942
+ "om 'react-dom/test-utils';\n" +
2941
2943
'// ...\n' +
2942
2944
'act(() => ...);\n\n' +
2943
2945
'// for react-test-renderer:\n' +
2944
- "import TestRenderer from 'react-test-renderer';\n" +
2946
+ // Break up imports to avoid accidentally parsing them as dependencies.
2947
+ 'import TestRenderer fr' +
2948
+ "om react-test-renderer';\n" +
2945
2949
'const {act} = TestRenderer;\n' +
2946
2950
'// ...\n' +
2947
2951
'act(() => ...);' +
@@ -3027,7 +3031,9 @@ export function warnIfUnmockedScheduler(fiber: Fiber) {
3027
3031
'In Concurrent or Sync modes, the "scheduler" module needs to be mocked ' +
3028
3032
'to guarantee consistent behaviour across tests and browsers. ' +
3029
3033
'For example, with jest: \n' +
3030
- "jest.mock('scheduler', () => require('scheduler/unstable_mock'));\n\n" +
3034
+ // Break up requires to avoid accidentally parsing them as dependencies.
3035
+ "jest.mock('scheduler', () => require" +
3036
+ "('scheduler/unstable_mock'));\n\n" +
3031
3037
'For more info, visit https://fb.me/react-mock-scheduler' ,
3032
3038
) ;
3033
3039
} else if ( warnAboutUnmockedScheduler === true ) {
@@ -3036,7 +3042,9 @@ export function warnIfUnmockedScheduler(fiber: Fiber) {
3036
3042
'Starting from React v17, the "scheduler" module will need to be mocked ' +
3037
3043
'to guarantee consistent behaviour across tests and browsers. ' +
3038
3044
'For example, with jest: \n' +
3039
- "jest.mock('scheduler', () => require('scheduler/unstable_mock'));\n\n" +
3045
+ // Break up requires to avoid accidentally parsing them as dependencies.
3046
+ "jest.mock('scheduler', () => require" +
3047
+ "('scheduler/unstable_mock'));\n\n" +
3040
3048
'For more info, visit https://fb.me/react-mock-scheduler' ,
3041
3049
) ;
3042
3050
}
0 commit comments