Skip to content

Commit 3311543

Browse files
committed
Fix tests, unbreak master.
1 parent 04b4c8c commit 3311543

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

packages/jest-config/src/__tests__/set_from_argv.test.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ test('maps special values to valid options', () => {
2323
collectCoverage: true,
2424
testEnvironment: 'node',
2525
useStderr: true,
26-
watch: true,
26+
watch: false,
27+
watchAll: true,
2728
});
2829
});
2930

packages/jest-util/src/__tests__/format_test_results_test.js renamed to packages/jest-util/src/__tests__/format_test_results.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
'use strict';
1111

12-
const formatTestResults = require('../formatTestResults');
12+
const formatTestResults = require('../format_test_results');
1313

1414
describe('formatTestResults', () => {
1515
const assertion = {

0 commit comments

Comments
 (0)