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 => {
1616require ( '../config/env' )
1717
1818const jest = require ( 'jest' )
19- const execSync = require ( 'child_process' ) . execSync
2019let argv = process . argv . slice ( 2 )
2120
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-
4021// Watch unless on CI, in coverage mode, or explicitly running all tests
4122if (
4223 ! process . env . CI &&
4324 argv . indexOf ( '--coverage' ) === - 1 &&
4425 argv . indexOf ( '--watchAll' ) === - 1
4526) {
4627 // https://github.com/facebook/create-react-app/issues/5210
47- const hasSourceControl = isInGitRepository ( ) || isInMercurialRepository ( )
48- argv . push ( hasSourceControl ? '--watch' : '--watchAll' )
28+ argv . push ( '--watchAll' )
4929}
5030
5131jest . run ( argv )
You can’t perform that action at this time.
0 commit comments