Skip to content

Commit

Permalink
0.9.0.
Browse files Browse the repository at this point in the history
Summary:yay!
Closes jestjs#769

Differential Revision: D3015097

fb-gh-sync-id: be6aaf09a2fca4096ea6fcc49ebc6f748559a4ea
shipit-source-id: be6aaf09a2fca4096ea6fcc49ebc6f748559a4ea
  • Loading branch information
cpojer authored and Facebook Github Bot 4 committed Mar 5, 2016
1 parent c62009a commit a721d42
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "jest-cli",
"description": "Painless JavaScript Unit Testing.",
"version": "0.9.0-fb3",
"version": "0.9.0",
"main": "src/jest.js",
"dependencies": {
"chalk": "^1.1.1",
Expand Down
10 changes: 5 additions & 5 deletions packages/babel-plugin-jest-unmock/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
"license": "BSD-3-Clause",
"main": "src/index.js",
"devDependencies": {
"react": "^0.14.0",
"jest-cli": "^0.9.0-fb3"
"babel-jest": "*",
"babel-preset-es2015": "*",
"jest-cli": "*",
"react": "^0.14.0"
},
"jest": {
"scriptPreprocessor": "node_modules/babel-jest",
"testRunner": "<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2.js",
"testEnvironment_EXPERIMENTAL": "<rootDir>/node_modules/jest-cli/src/environments/NodeEnvironment"
"testEnvironment": "<rootDir>/node_modules/jest-cli/src/environments/NodeEnvironment"
},
"scripts": {
"prepublish": "npm test",
Expand Down
3 changes: 1 addition & 2 deletions website/src/jest/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,12 @@ var index = React.createClass({
<li>Automatically finds tests to execute in your repo.</li>
<li>Sandboxes test files and resets state automatically for every test.</li>
<li><a href="/jest/docs/automatic-mocking.html">Automatically mocks</a> dependencies for you when running your tests.</li>
<li>Allows you to <a href="/jest/docs/timer-mocks.html">test asynchronous code synchronously</a>.</li>
<li>Allows you to <a href="/jest/docs/timer-mocks.html">test asynchronous code synchronously</a> as well as <a href="/jest/docs/tutorial-async.html">Promises and async/await.</a></li>
<li>Uses static analysis to find and only run relevant test files during local development.</li>
<li>Provides a <a href="/jest/docs/mock-functions.html">manual mocking library</a>.</li>
<li>Runs your tests with a fake DOM implementation (via <a href="https://github.com/tmpvar/jsdom" target="_blank">jsdom</a>) on the command line.</li>
<li>Runs tests in parallel processes to minimize test runtime.</li>
<li>Works with any compile-to-JS language and integrates seamlessly with <a href="http://babeljs.io" target="_blank">Babel</a>.</li>
<li>Supports testing asynchronous code, like Promises or async/await.</li>
<li>Creates coverage reports.</li>
</ul>
</div>
Expand Down

0 comments on commit a721d42

Please sign in to comment.