Skip to content

Commit f5e7d48

Browse files
cpojerFacebook Github Bot 9
authored andcommitted
v10.0.0
Summary: Closes jestjs#854 Differential Revision: D3118548 fb-gh-sync-id: a7cf161bd2bafd7ed7293074118bd66c9f1a8354 fbshipit-source-id: a7cf161bd2bafd7ed7293074118bd66c9f1a8354
1 parent 66802e8 commit f5e7d48

File tree

12 files changed

+22
-22
lines changed

12 files changed

+22
-22
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
## master
22

3-
## jest-cli 0.9.3, babel-jest 9.0.4
3+
## jest-cli 0.10.0, babel-jest 10.0.0
44

55
* Improved `toBeCalled` Jasmine 2 custom matcher messages.
66
* Added `babel-plugin-jest-hoist` which now also hoists `jest.mock` and the
77
new `jest.enableAutomock` and `jest.disableAutomock` API.
88
* Fixed `moduleNameMapper` config option when used with paths.
9-
* Added `jest-util`, general code cleanup.
9+
* Added `jest-util`, `jest-mock`, `jest-jasmine1`, `jest-jasmine2` packages.
1010
* Fixed an error with Jasmine 2 and tests that `throw 'string errors'`.
1111
* Fixed issues with unmocking symlinked module names.
1212
* Clear the terminal window when using `--watch`.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -677,7 +677,7 @@ The path to a module that provides a synchronous function from pre-processing so
677677

678678
Examples of such compilers include [jstransform](http://github.com/facebook/jstransform), [recast](http://github.com/benjamn/recast), [regenerator](http://github.com/facebook/regenerator), and [traceur](https://github.com/google/traceur-compiler).
679679

680-
*Note: Jest's preprocessor is only ran once per file unless the file has changed. During development of a `scriptPreprocessor` it can be useful to run Jest with `--no-cache` or to frequently [delete Jest's cache](/jest/docs/troubleshooting.html#caching-issues).*
680+
*Note: Jest's preprocessor is only ran once per file unless the file has changed. During development of a `scriptPreprocessor` it can be useful to run Jest with `--no-cache` or to frequently [delete Jest's cache](http://facebook.github.io/jest/docs/troubleshooting.html#caching-issues).*
681681

682682
### `config.preprocessorIgnorePatterns` [array<string>]
683683
(default: `["/node_modules/"]`)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
9.0.3
1+
10.0.0

docs/GettingStarted.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ describe('CheckboxWithLabel', () => {
9898
});
9999
```
100100

101-
Check out the [React tutorial](docs/tutorial-react.html) for more.
101+
Check out the [React tutorial](/jest/docs/tutorial-react.html) for more.
102102

103103
**And you are good to go!** The next time you run Jest it will print something
104104
like
@@ -159,7 +159,7 @@ describe('async tests', () => {
159159
});
160160
```
161161

162-
Check out the [Async tutorial](docs/tutorial-async.html) for more.
162+
Check out the [Async tutorial](/jest/docs/tutorial-async.html) for more.
163163

164164
#### Automated Mocking and Sandboxing
165165

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
{
22
"name": "jest-cli",
33
"description": "Painless JavaScript Unit Testing.",
4-
"version": "0.9.3",
4+
"version": "0.10.0",
55
"main": "src/jest.js",
66
"dependencies": {
77
"chalk": "^1.1.1",
88
"cover": "^0.2.9",
99
"diff": "^2.1.1",
1010
"graceful-fs": "^4.1.3",
1111
"istanbul": "^0.4.2",
12-
"jest-jasmine1": "^9.0.3",
13-
"jest-jasmine2": "^9.0.3",
14-
"jest-mock": "^9.0.3",
15-
"jest-util": "^9.0.3",
12+
"jest-jasmine1": "^10.0.1",
13+
"jest-jasmine2": "^10.0.1",
14+
"jest-mock": "^10.0.1",
15+
"jest-util": "^10.0.1",
1616
"jsdom": "^7.2.0",
1717
"json-stable-stringify": "^1.0.0",
1818
"lodash.template": "^3.6.2",

packages/babel-jest/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "babel-jest",
3-
"version": "9.0.3",
3+
"version": "10.0.1",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/facebook/jest.git"
@@ -9,6 +9,6 @@
99
"main": "src/index.js",
1010
"dependencies": {
1111
"babel-core": "^6.0.0",
12-
"babel-preset-jest": "^9.0.3"
12+
"babel-preset-jest": "^10.0.1"
1313
}
1414
}

packages/babel-plugin-jest-hoist/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "babel-plugin-jest-hoist",
3-
"version": "9.0.3",
3+
"version": "10.0.1",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/facebook/jest.git"
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "babel-preset-jest",
3-
"version": "9.0.3",
3+
"version": "10.0.1",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/facebook/jest.git"
77
},
88
"license": "BSD-3-Clause",
99
"main": "index.js",
1010
"dependencies": {
11-
"babel-plugin-jest-hoist": "^9.0.3"
11+
"babel-plugin-jest-hoist": "^10.0.1"
1212
}
1313
}

packages/jest-jasmine1/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jest-jasmine1",
3-
"version": "9.0.3",
3+
"version": "10.0.1",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/facebook/jest.git"
@@ -9,7 +9,7 @@
99
"main": "src/index.js",
1010
"dependencies": {
1111
"graceful-fs": "^4.1.3",
12-
"jest-util": "^9.0.3"
12+
"jest-util": "^10.0.1"
1313
},
1414
"scripts": {
1515
"test": "../../bin/jest.js"

packages/jest-jasmine2/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jest-jasmine2",
3-
"version": "9.0.3",
3+
"version": "10.0.1",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/facebook/jest.git"
@@ -9,7 +9,7 @@
99
"main": "src/index.js",
1010
"dependencies": {
1111
"graceful-fs": "^4.1.3",
12-
"jest-util": "^9.0.3"
12+
"jest-util": "^10.0.1"
1313
},
1414
"scripts": {
1515
"test": "../../bin/jest.js"

packages/jest-mock/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jest-mock",
3-
"version": "9.0.3",
3+
"version": "10.0.1",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/facebook/jest.git"

packages/jest-util/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jest-util",
3-
"version": "9.0.3",
3+
"version": "10.0.1",
44
"main": "index.js",
55
"dependencies": {
66
"chalk": "^1.1.1",

0 commit comments

Comments
 (0)