Skip to content

Commit

Permalink
revert normalize.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
victorphoenix3 committed Oct 24, 2020
1 parent 1535af7 commit c8b76b9
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions packages/jest-config/src/normalize.ts
Expand Up @@ -896,7 +896,6 @@ export default function normalize(
case 'notify':
case 'notifyMode':
case 'onlyChanged':
case 'onlyFailures':
case 'outputFile':
case 'passWithNoTests':
case 'replname':
Expand Down Expand Up @@ -986,12 +985,10 @@ export default function normalize(

if (argv.all) {
newOptions.onlyChanged = false;
newOptions.onlyFailures = false;
} else if (newOptions.testPathPattern) {
// When passing a test path pattern we don't want to only monitor changed
// or failed files unless `--watch` is also passed.
newOptions.onlyChanged = newOptions.watch;
newOptions.onlyFailures = newOptions.watch;
}

if (!newOptions.onlyChanged) {
Expand Down

0 comments on commit c8b76b9

Please sign in to comment.