Skip to content

Commit 4987736

Browse files
Updated react-scripts babel-jest && jest packages to 18.0.0
1 parent 7d66ba1 commit 4987736

File tree

3 files changed

+3
-15
lines changed

3 files changed

+3
-15
lines changed

packages/react-scripts/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"autoprefixer": "6.5.1",
2727
"babel-core": "6.17.0",
2828
"babel-eslint": "7.1.1",
29-
"babel-jest": "17.0.2",
29+
"babel-jest": "18.0.0",
3030
"babel-loader": "6.2.7",
3131
"babel-preset-react-app": "^2.0.1",
3232
"case-sensitive-paths-webpack-plugin": "1.1.4",
@@ -50,7 +50,7 @@
5050
"gzip-size": "3.0.0",
5151
"html-webpack-plugin": "2.24.0",
5252
"http-proxy-middleware": "0.17.2",
53-
"jest": "17.0.2",
53+
"jest": "18.0.0",
5454
"json-loader": "0.5.4",
5555
"object-assign": "4.1.0",
5656
"postcss-loader": "1.0.0",

packages/react-scripts/scripts/test.js

-12
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,6 @@ if (!process.env.CI && argv.indexOf('--coverage') < 0) {
2626
argv.push('--watch');
2727
}
2828

29-
// A temporary hack to clear terminal correctly.
30-
// You can remove this after updating to Jest 18 when it's out.
31-
// https://github.com/facebook/jest/pull/2230
32-
var realWrite = process.stdout.write;
33-
var CLEAR = process.platform === 'win32' ? '\x1Bc' : '\x1B[2J\x1B[3J\x1B[H';
34-
process.stdout.write = function(chunk, encoding, callback) {
35-
if (chunk === '\x1B[2J\x1B[H') {
36-
chunk = CLEAR;
37-
}
38-
return realWrite.call(this, chunk, encoding, callback);
39-
};
40-
4129
// @remove-on-eject-begin
4230
// This is not necessary after eject because we embed config into package.json.
4331
const createJestConfig = require('../utils/createJestConfig');

packages/react-scripts/utils/createJestConfig.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ module.exports = (resolve, rootDir, isEjecting) => {
2424
setupFiles: [resolve('config/polyfills.js')],
2525
setupTestFrameworkScriptFile: setupTestsFile,
2626
testPathIgnorePatterns: [
27-
'<rootDir>[/\\\\](build|docs|node_modules)[/\\\\]'
27+
'<rootDir>[/\\\\](build|docs|node_modules|scripts)[/\\\\]'
2828
],
2929
testEnvironment: 'node',
3030
testURL: 'http://localhost',

0 commit comments

Comments
 (0)