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 9aaf556 commit eb199bdCopy full SHA for eb199bd
packages/jest-runner/__typetests__/jest-runner.test.ts
@@ -15,9 +15,9 @@ import type {
15
OnTestSuccess,
16
TestRunnerContext,
17
TestRunnerOptions,
18
+ TestWatcher,
19
UnsubscribeFn,
20
} from 'jest-runner';
-import type {TestWatcher} from 'jest-watcher';
21
22
const globalConfig = {} as Config.GlobalConfig;
23
const runnerContext = {} as TestRunnerContext;
packages/jest-runner/src/index.ts
@@ -27,6 +27,7 @@ interface WorkerInterface extends Worker {
27
worker: typeof worker;
28
}
29
30
+export type {TestWatcher} from 'jest-watcher';
31
export {CallbackTestRunner, EmittingTestRunner} from './types';
32
export type {
33
OnTestFailure,
0 commit comments