Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,17 +76,6 @@ jobs:
- save-cache: *save-cache
- run: yarn run test-ci

test-node-4:
working_directory: ~/jest
docker:
- image: circleci/node:4
steps:
- checkout
- restore-cache: *restore-cache
- *yarn-install
- save-cache: *save-cache
- run: npm run test-ci-partial

test-and-deploy-website:
working_directory: ~/jest
docker:
Expand All @@ -107,6 +96,5 @@ workflows:
jobs:
- test-node-8
- test-node-6
- test-node-4
- test-browser
- test-and-deploy-website
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
* `[jest-worker]` Initial version of parallel worker abstraction, say hello! ([#4497](https://github.com/facebook/jest/pull/4497))

### Chore & Maintenance
* `[*]` [**BREAKING**] Drop support for Node.js version 4
* `[babel-jest]` Explicitly bump istanbul to newer versions ([#4616](https://github.com/facebook/jest/pull/4616))
* `[expect]` Upgrade mocha and rollup for browser testing ([#4642](https://github.com/facebook/jest/pull/4642))
* `[docs]` Add info about `coveragePathIgnorePatterns` ([#4602](https://github.com/facebook/jest/pull/4602))
Expand Down
2 changes: 1 addition & 1 deletion packages/jest-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"jest": "./bin/jest.js"
},
"engines": {
"node": ">= 4"
"node": ">= 6"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/jest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"jest": "./bin/jest.js"
},
"engines": {
"node": ">= 4"
"node": ">= 6"
},
"repository": {
"type": "git",
Expand Down