Skip to content

Commit

Permalink
Don't add --watchAll by default in tsdx test (#65)
Browse files Browse the repository at this point in the history
* Don't add --watchAll by default in tsdx test

* Add tests for watch, add --verbose flag

* Combine test files

* Revert "Combine test files"

This reverts commit f615101.

* Revert "Add tests for watch, add --verbose flag"

This reverts commit 590e2ee.
  • Loading branch information
jaredpalmer authored May 1, 2019
1 parent f317218 commit 453e725
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -376,13 +376,6 @@ prog

const argv = process.argv.slice(2);

// Watch unless on CI or in coverage mode
if (!process.env.CI && argv.indexOf('--coverage') < 0) {
// Use Jest --watchAll flag (instead of) --watch as of Jest 23+
// @see https://github.com/wmonk/create-react-app-typescript/issues/282#issuecomment-379660648
argv.push('--watchAll');
}

argv.push(
'--config',
JSON.stringify({
Expand Down

0 comments on commit 453e725

Please sign in to comment.