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

Add option testSequencer allow user use custom sequencer. #8223

Merged
merged 30 commits into from
Apr 2, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
cac8a66
move testSequencer to individual package
WeiAnAn Mar 26, 2019
27b7eba
add testSequencer option to let user use custom sequencer
WeiAnAn Mar 26, 2019
4b12436
giving testSequencer own normalize function
WeiAnAn Mar 26, 2019
aeea6ad
lint
WeiAnAn Mar 26, 2019
5093f46
remove test comment
WeiAnAn Mar 27, 2019
b94e545
keep export default
WeiAnAn Mar 27, 2019
ca3305e
use interopRequireDefault to import package
WeiAnAn Mar 27, 2019
b5c593a
correct `testSequencer` default package name
WeiAnAn Mar 27, 2019
9223489
add runInBand arg to assure running test in sequence
WeiAnAn Mar 27, 2019
ec029bb
update changelog
WeiAnAn Mar 27, 2019
02f14fa
just only implement sort function in test
WeiAnAn Mar 27, 2019
46ef8f0
add a dependency on @jest/test-scheduler to jest-config so it works i…
WeiAnAn Mar 27, 2019
30ac7e5
remove wrong dependency
WeiAnAn Mar 27, 2019
4bc5a01
let tests easier
WeiAnAn Mar 27, 2019
409a9ba
update docs
WeiAnAn Mar 27, 2019
abc58e2
fix wrong option name
WeiAnAn Mar 27, 2019
934f77c
lint
WeiAnAn Mar 27, 2019
1b3f0ef
add Test type in configuration
WeiAnAn Mar 28, 2019
35b2177
Merge branch 'master' into custom-sequencer
WeiAnAn Mar 29, 2019
f8b9b17
Update docs/CLI.md
jeysal Mar 30, 2019
4efe85c
keep example as js instead of ts
WeiAnAn Mar 30, 2019
20910a9
update changelog which affect multiple packages to one line.
WeiAnAn Mar 30, 2019
2e8fe7b
add @jest/test-sequencer to dependency
WeiAnAn Mar 30, 2019
7d58433
merge master
WeiAnAn Mar 30, 2019
9662a12
update changelog
WeiAnAn Mar 30, 2019
7e8d15a
move @jest/test-sequencer to dev dependency
WeiAnAn Mar 30, 2019
0866aba
Update @jest/core package.json
WeiAnAn Apr 2, 2019
5ffb812
merge version 24.6
WeiAnAn Apr 2, 2019
745cad3
update version to 24.6.0
WeiAnAn Apr 2, 2019
301a5cd
sort
SimenB Apr 2, 2019
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
Prev Previous commit
Next Next commit
merge version 24.6
  • Loading branch information
WeiAnAn committed Apr 2, 2019
commit 5ffb812e2cd433db210c78f41cbafb3ef1ba462e
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

### Features

- `[@jest/core, @jest/test-sequencer]` Move `testSequencer` to individual package `@jest/test-sequencer` ([#8223](https://github.com/facebook/jest/pull/8223))
- `[@jest/core, jest-cli, jest-config]` Add option `testSequencer` allow user use custom sequencer. ([#8223](https://github.com/facebook/jest/pull/8223))

### Fixes

### Chore & Maintenance
Expand All @@ -20,8 +23,6 @@
- `[pretty-format]` Support React.Suspense ([#8180](https://github.com/facebook/jest/pull/8180))
- `[jest-snapshot]` Indent inline snapshots ([#8198](https://github.com/facebook/jest/pull/8198))
- `[jest-config]` Support colors in `displayName` configuration ([#8025](https://github.com/facebook/jest/pull/8025))
- `[@jest/core, @jest/test-sequencer]` Move `testSequencer` to individual package `@jest/test-sequencer` ([#8223](https://github.com/facebook/jest/pull/8223))
- `[@jest/core, jest-cli, jest-config]` Add option `testSequencer` allow user use custom sequencer. ([#8223](https://github.com/facebook/jest/pull/8223))

### Fixes

Expand Down
6 changes: 3 additions & 3 deletions packages/jest-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
"types": "build/index.d.ts",
"dependencies": {
"@babel/core": "^7.1.0",
"@jest/types": "^24.5.0",
"@jest/test-sequencer": "^24.5.0",
"babel-jest": "^24.5.0",
"@jest/test-sequencer": "^24.6.0",
"@jest/types": "^24.6.0",
"babel-jest": "^24.6.0",
"chalk": "^2.0.1",
"glob": "^7.1.1",
"jest-environment-jsdom": "^24.6.0",
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.