File tree 1 file changed +3
-7
lines changed
packages/jest-circus/src/__mocks__
1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -11,13 +11,9 @@ import * as path from 'path';
11
11
import { ExecaSyncReturnValue , sync as spawnSync } from 'execa' ;
12
12
import * as fs from 'graceful-fs' ;
13
13
14
- const CIRCUS_PATH = require . resolve ( '../../build' ) . replace ( / \\ / g, '\\\\' ) ;
15
- const CIRCUS_RUN_PATH = require
16
- . resolve ( '../../build/run' )
17
- . replace ( / \\ / g, '\\\\' ) ;
18
- const CIRCUS_STATE_PATH = require
19
- . resolve ( '../../build/state' )
20
- . replace ( / \\ / g, '\\\\' ) ;
14
+ const CIRCUS_PATH = require . resolve ( '../' ) . replace ( / \\ / g, '\\\\' ) ;
15
+ const CIRCUS_RUN_PATH = require . resolve ( '../run' ) . replace ( / \\ / g, '\\\\' ) ;
16
+ const CIRCUS_STATE_PATH = require . resolve ( '../state' ) . replace ( / \\ / g, '\\\\' ) ;
21
17
const TEST_EVENT_HANDLER_PATH = require
22
18
. resolve ( './testEventHandler' )
23
19
. replace ( / \\ / g, '\\\\' ) ;
You can’t perform that action at this time.
0 commit comments