Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update node in jest worker #10145

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -2262,6 +2262,7 @@ See https://jestjs.io/blog/2016/12/15/2016-in-jest.html

- Performance improvements.
- jest now uses `chalk` instead of its own colors implementation.
- jest-worker now uses `node` version `10.13`

## 0.8.1

Expand Down
18 changes: 6 additions & 12 deletions e2e/__tests__/__snapshots__/watchModePatterns.test.ts.snap
@@ -1,18 +1,14 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`can press "p" to filter by file name 1`] = `

"
Pattern Mode Usage
› Press Esc to exit pattern mode.
› Press Enter to filter by a filenames regex pattern.

pattern › 
pattern › b
pattern › ba
pattern › bar


pattern › pattern › b pattern › ba pattern › bar

"
`;

exports[`can press "p" to filter by file name: test results 1`] = `
Expand Down Expand Up @@ -44,16 +40,14 @@ Ran all test suites matching /bar/i.
`;

exports[`can press "t" to filter by test name 1`] = `

"
Pattern Mode Usage
› Press Esc to exit pattern mode.
› Press Enter to filter by a tests regex pattern.

pattern › 
pattern › 2


pattern › pattern › 2

"
`;

exports[`can press "t" to filter by test name: test results 1`] = `
Expand Down
2 changes: 1 addition & 1 deletion packages/jest-worker/package.json
Expand Up @@ -21,7 +21,7 @@
"worker-farm": "^1.6.0"
},
"engines": {
"node": ">= 10.14.2"
"node": ">= 10.13.0"
},
"publishConfig": {
"access": "public"
Expand Down