Skip to content

Commit 4af916f

Browse files
authored
chore: do not use deep imports in unit tests (#13905)
1 parent dd4ea74 commit 4af916f

File tree

2 files changed

+70
-47
lines changed

2 files changed

+70
-47
lines changed

packages/jest-core/src/__tests__/watch.test.js

+67-45
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,27 @@ describe('Watch mode flows', () => {
111111

112112
beforeEach(() => {
113113
isInteractive = true;
114-
jest.doMock('jest-util/build/isInteractive', () => isInteractive);
114+
jest.doMock('jest-util', () => {
115+
const original = jest.requireActual('jest-util');
116+
117+
return {
118+
...original,
119+
isInteractive,
120+
// this imports internally, so we need to check `isInteractive` manually
121+
preRunMessage: {
122+
print: function mockedPrint(stream) {
123+
if (isInteractive) {
124+
stream.write('Determining test suites to run...');
125+
}
126+
},
127+
remove: function mockedRemove(stream) {
128+
if (isInteractive) {
129+
original.clearLine(stream);
130+
}
131+
},
132+
},
133+
};
134+
});
115135
watch = require('../watch').default;
116136
const config = {
117137
rootDir: __dirname,
@@ -131,10 +151,10 @@ describe('Watch mode flows', () => {
131151
jest.resetModules();
132152
});
133153

134-
it('Correctly passing test path pattern', () => {
154+
it('Correctly passing test path pattern', async () => {
135155
globalConfig.testPathPattern = 'test-*';
136156

137-
watch(globalConfig, contexts, pipe, hasteMapInstances, stdin);
157+
await watch(globalConfig, contexts, pipe, hasteMapInstances, stdin);
138158

139159
expect(runJestMock.mock.calls[0][0]).toMatchObject({
140160
contexts,
@@ -147,10 +167,10 @@ describe('Watch mode flows', () => {
147167
});
148168
});
149169

150-
it('Correctly passing test name pattern', () => {
170+
it('Correctly passing test name pattern', async () => {
151171
globalConfig.testNamePattern = 'test-*';
152172

153-
watch(globalConfig, contexts, pipe, hasteMapInstances, stdin);
173+
await watch(globalConfig, contexts, pipe, hasteMapInstances, stdin);
154174

155175
expect(runJestMock.mock.calls[0][0]).toMatchObject({
156176
contexts,
@@ -163,8 +183,8 @@ describe('Watch mode flows', () => {
163183
});
164184
});
165185

166-
it('Runs Jest once by default and shows usage', () => {
167-
watch(globalConfig, contexts, pipe, hasteMapInstances, stdin);
186+
it('Runs Jest once by default and shows usage', async () => {
187+
await watch(globalConfig, contexts, pipe, hasteMapInstances, stdin);
168188
expect(runJestMock.mock.calls[0][0]).toMatchObject({
169189
contexts,
170190
globalConfig,
@@ -177,12 +197,12 @@ describe('Watch mode flows', () => {
177197
expect(pipe.write.mock.calls.reverse()[0]).toMatchSnapshot();
178198
});
179199

180-
it('Runs Jest in a non-interactive environment not showing usage', () => {
200+
it('Runs Jest in a non-interactive environment not showing usage', async () => {
181201
jest.resetModules();
182202
isInteractive = false;
183203

184204
watch = require('../watch').default;
185-
watch(globalConfig, contexts, pipe, hasteMapInstances, stdin);
205+
await watch(globalConfig, contexts, pipe, hasteMapInstances, stdin);
186206
expect(runJestMock.mock.calls[0][0]).toMatchObject({
187207
contexts,
188208
globalConfig,
@@ -195,9 +215,9 @@ describe('Watch mode flows', () => {
195215
expect(pipe.write.mock.calls.reverse()[0]).toMatchSnapshot();
196216
});
197217

198-
it('resolves relative to the package root', () => {
199-
expect(async () => {
200-
await watch(
218+
it('resolves relative to the package root', async () => {
219+
await expect(
220+
watch(
201221
{
202222
...globalConfig,
203223
rootDir: __dirname,
@@ -207,8 +227,8 @@ describe('Watch mode flows', () => {
207227
pipe,
208228
hasteMapInstances,
209229
stdin,
210-
);
211-
}).not.toThrow();
230+
),
231+
).resolves.toBeUndefined();
212232
});
213233

214234
it('shows prompts for WatchPlugins in alphabetical order', async () => {
@@ -239,7 +259,7 @@ describe('Watch mode flows', () => {
239259
it('shows update snapshot prompt (without interactive)', async () => {
240260
results = {snapshot: {failure: true}};
241261

242-
watch(
262+
await watch(
243263
{
244264
...globalConfig,
245265
rootDir: __dirname,
@@ -282,7 +302,7 @@ describe('Watch mode flows', () => {
282302
],
283303
};
284304

285-
watch(
305+
await watch(
286306
{
287307
...globalConfig,
288308
rootDir: __dirname,
@@ -317,7 +337,7 @@ describe('Watch mode flows', () => {
317337
{virtual: true},
318338
);
319339

320-
watch(
340+
await watch(
321341
{
322342
...globalConfig,
323343
rootDir: __dirname,
@@ -354,7 +374,7 @@ describe('Watch mode flows', () => {
354374
{virtual: true},
355375
);
356376

357-
watch(
377+
await watch(
358378
{
359379
...globalConfig,
360380
rootDir: __dirname,
@@ -433,7 +453,7 @@ describe('Watch mode flows', () => {
433453
${'p'} | ${'TestPathPattern'}
434454
`(
435455
'allows WatchPlugins to override non-reserved internal plugins',
436-
({key}) => {
456+
async ({key}) => {
437457
const run = jest.fn(() => Promise.resolve());
438458
const pluginPath = `${__dirname}/__fixtures__/plugin_valid_override_${key}`;
439459
jest.doMock(
@@ -453,17 +473,19 @@ describe('Watch mode flows', () => {
453473
{virtual: true},
454474
);
455475

456-
watch(
457-
{
458-
...globalConfig,
459-
rootDir: __dirname,
460-
watchPlugins: [{config: {}, path: pluginPath}],
461-
},
462-
contexts,
463-
pipe,
464-
hasteMapInstances,
465-
stdin,
466-
);
476+
await expect(
477+
watch(
478+
{
479+
...globalConfig,
480+
rootDir: __dirname,
481+
watchPlugins: [{config: {}, path: pluginPath}],
482+
},
483+
contexts,
484+
pipe,
485+
hasteMapInstances,
486+
stdin,
487+
),
488+
).resolves.toBeUndefined();
467489
},
468490
);
469491

@@ -686,7 +708,7 @@ describe('Watch mode flows', () => {
686708
watchPlugins: [{config: {}, path: pluginPath}],
687709
};
688710

689-
watch(config, contexts, pipe, hasteMapInstances, stdin);
711+
await watch(config, contexts, pipe, hasteMapInstances, stdin);
690712
await nextTick();
691713

692714
stdin.emit('x');
@@ -811,8 +833,8 @@ describe('Watch mode flows', () => {
811833
expect(showPrompt2).toHaveBeenCalled();
812834
});
813835

814-
it('Pressing "o" runs test in "only changed files" mode', () => {
815-
watch(globalConfig, contexts, pipe, hasteMapInstances, stdin);
836+
it('Pressing "o" runs test in "only changed files" mode', async () => {
837+
await watch(globalConfig, contexts, pipe, hasteMapInstances, stdin);
816838
runJestMock.mockReset();
817839

818840
stdin.emit('o');
@@ -825,8 +847,8 @@ describe('Watch mode flows', () => {
825847
});
826848
});
827849

828-
it('Pressing "a" runs test in "watch all" mode', () => {
829-
watch(globalConfig, contexts, pipe, hasteMapInstances, stdin);
850+
it('Pressing "a" runs test in "watch all" mode', async () => {
851+
await watch(globalConfig, contexts, pipe, hasteMapInstances, stdin);
830852
runJestMock.mockReset();
831853

832854
stdin.emit('a');
@@ -839,8 +861,8 @@ describe('Watch mode flows', () => {
839861
});
840862
});
841863

842-
it('Pressing "ENTER" reruns the tests', () => {
843-
watch(globalConfig, contexts, pipe, hasteMapInstances, stdin);
864+
it('Pressing "ENTER" reruns the tests', async () => {
865+
await watch(globalConfig, contexts, pipe, hasteMapInstances, stdin);
844866
expect(runJestMock).toHaveBeenCalledTimes(1);
845867
stdin.emit(KEYS.ENTER);
846868
expect(runJestMock).toHaveBeenCalledTimes(2);
@@ -849,7 +871,7 @@ describe('Watch mode flows', () => {
849871
it('Pressing "t" reruns the tests in "test name pattern" mode', async () => {
850872
const hooks = new JestHook();
851873

852-
watch(globalConfig, contexts, pipe, hasteMapInstances, stdin, hooks);
874+
await watch(globalConfig, contexts, pipe, hasteMapInstances, stdin, hooks);
853875
runJestMock.mockReset();
854876

855877
stdin.emit('t');
@@ -867,7 +889,7 @@ describe('Watch mode flows', () => {
867889
it('Pressing "p" reruns the tests in "filename pattern" mode', async () => {
868890
const hooks = new JestHook();
869891

870-
watch(globalConfig, contexts, pipe, hasteMapInstances, stdin, hooks);
892+
await watch(globalConfig, contexts, pipe, hasteMapInstances, stdin, hooks);
871893
runJestMock.mockReset();
872894

873895
stdin.emit('p');
@@ -885,7 +907,7 @@ describe('Watch mode flows', () => {
885907
it('Can combine "p" and "t" filters', async () => {
886908
const hooks = new JestHook();
887909

888-
watch(globalConfig, contexts, pipe, hasteMapInstances, stdin, hooks);
910+
await watch(globalConfig, contexts, pipe, hasteMapInstances, stdin, hooks);
889911
runJestMock.mockReset();
890912

891913
stdin.emit('p');
@@ -911,7 +933,7 @@ describe('Watch mode flows', () => {
911933

912934
globalConfig.updateSnapshot = 'new';
913935

914-
watch(globalConfig, contexts, pipe, hasteMapInstances, stdin, hooks);
936+
await watch(globalConfig, contexts, pipe, hasteMapInstances, stdin, hooks);
915937
runJestMock.mockReset();
916938

917939
hooks.getEmitter().onTestRunComplete({snapshot: {failure: true}});
@@ -951,17 +973,17 @@ describe('Watch mode flows', () => {
951973
});
952974
});
953975

954-
it('passWithNoTest should be set to true in watch mode', () => {
976+
it('passWithNoTest should be set to true in watch mode', async () => {
955977
globalConfig.passWithNoTests = false;
956-
watch(globalConfig, contexts, pipe, hasteMapInstances, stdin);
978+
await watch(globalConfig, contexts, pipe, hasteMapInstances, stdin);
957979
globalConfig.passWithNoTests = true;
958980
expect(runJestMock.mock.calls[0][0]).toMatchObject({
959981
globalConfig,
960982
});
961983
});
962984

963-
it('shows the correct usage for the f key in "only failed tests" mode', () => {
964-
watch(globalConfig, contexts, pipe, hasteMapInstances, stdin);
985+
it('shows the correct usage for the f key in "only failed tests" mode', async () => {
986+
await watch(globalConfig, contexts, pipe, hasteMapInstances, stdin);
965987

966988
stdin.emit('f');
967989
stdin.emit('w');

packages/jest-runtime/src/__tests__/defaultResolver.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@
55
* LICENSE file in the root directory of this source tree.
66
*/
77

8-
import resolver from 'jest-resolve/build/defaultResolver.js';
9-
module.exports = resolver;
8+
module.exports = (request, opts) => {
9+
return opts.defaultResolver(request, opts);
10+
};

0 commit comments

Comments
 (0)