File tree Expand file tree Collapse file tree 1 file changed +1
-21
lines changed Expand file tree Collapse file tree 1 file changed +1
-21
lines changed Original file line number Diff line number Diff line change @@ -16,36 +16,16 @@ process.on('unhandledRejection', err => {
16
16
require ( '../config/env' )
17
17
18
18
const jest = require ( 'jest' )
19
- const execSync = require ( 'child_process' ) . execSync
20
19
let argv = process . argv . slice ( 2 )
21
20
22
- function isInGitRepository ( ) {
23
- try {
24
- execSync ( 'git rev-parse --is-inside-work-tree' , { stdio : 'ignore' } )
25
- return true
26
- } catch ( e ) {
27
- return false
28
- }
29
- }
30
-
31
- function isInMercurialRepository ( ) {
32
- try {
33
- execSync ( 'hg --cwd . root' , { stdio : 'ignore' } )
34
- return true
35
- } catch ( e ) {
36
- return false
37
- }
38
- }
39
-
40
21
// Watch unless on CI, in coverage mode, or explicitly running all tests
41
22
if (
42
23
! process . env . CI &&
43
24
argv . indexOf ( '--coverage' ) === - 1 &&
44
25
argv . indexOf ( '--watchAll' ) === - 1
45
26
) {
46
27
// https://github.com/facebook/create-react-app/issues/5210
47
- const hasSourceControl = isInGitRepository ( ) || isInMercurialRepository ( )
48
- argv . push ( hasSourceControl ? '--watch' : '--watchAll' )
28
+ argv . push ( '--watchAll' )
49
29
}
50
30
51
31
jest . run ( argv )
You can’t perform that action at this time.
0 commit comments