Skip to content

Commit 6acffd8

Browse files
authored
Remove --coverage + --watch workaround
1 parent 0b1d636 commit 6acffd8

File tree

1 file changed

+1
-1
lines changed
  • packages/react-scripts/scripts

1 file changed

+1
-1
lines changed

packages/react-scripts/scripts/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const jest = require('jest');
2727
const argv = process.argv.slice(2);
2828

2929
// Watch unless on CI or in coverage mode
30-
if (!process.env.CI && argv.indexOf('--coverage') < 0) {
30+
if (!process.env.CI) {
3131
argv.push('--watch');
3232
}
3333

0 commit comments

Comments
 (0)