We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25507ba commit b3a12deCopy full SHA for b3a12de
lib/createJestRunner.ts
@@ -87,7 +87,9 @@ export default function createRunner<
87
onFailure: OnTestFailure,
88
options: TestRunnerOptions,
89
): Promise<void> {
90
- const runner = (await import(runPath)).default;
+ const runner: (runTestOptions: RunTestOptions) => TestResult = (
91
+ await import(runPath)
92
+ ).default;
93
94
const mutex = pLimit(1);
95
return tests.reduce(
0 commit comments