File tree Expand file tree Collapse file tree 4 files changed +45
-0
lines changed Expand file tree Collapse file tree 4 files changed +45
-0
lines changed Original file line number Diff line number Diff line change 22
33## jest-cli 12.1.0
44
5+ * Jest is now also published in the ` jest ` package on npm.
56* Added ` testRegex ` to match for tests outside of specific folders. Deprecated
67 both ` testDirectoryName ` and ` testFileExtensions ` .
78* ` it ` can now return a Promise for async testing. ` pit ` was deprecated.
Original file line number Diff line number Diff line change 1+ #!/usr/bin/env node
2+ /**
3+ * Copyright (c) 2014, Facebook, Inc. All rights reserved.
4+ *
5+ * This source code is licensed under the BSD-style license found in the
6+ * LICENSE file in the root directory of this source tree. An additional grant
7+ * of patent rights can be found in the PATENTS file in the same directory.
8+ */
9+
10+ 'use strict' ;
11+
12+ require ( 'jest-cli/bin/jest' ) ;
Original file line number Diff line number Diff line change 1+ {
2+ "name" : " jest" ,
3+ "description" : " Painless JavaScript Unit Testing." ,
4+ "version" : " 12.1.1" ,
5+ "main" : " src/jest.js" ,
6+ "dependencies" : {
7+ "jest-cli" : " ^12.1.0"
8+ },
9+ "bin" : {
10+ "jest" : " ./bin/jest.js"
11+ },
12+ "engines" : {
13+ "node" : " >= 4"
14+ },
15+ "repository" : {
16+ "type" : " git" ,
17+ "url" : " https://github.com/facebook/jest"
18+ },
19+ "license" : " BSD-3-Clause"
20+ }
Original file line number Diff line number Diff line change 1+ #!/usr/bin/env node
2+ /**
3+ * Copyright (c) 2014, Facebook, Inc. All rights reserved.
4+ *
5+ * This source code is licensed under the BSD-style license found in the
6+ * LICENSE file in the root directory of this source tree. An additional grant
7+ * of patent rights can be found in the PATENTS file in the same directory.
8+ */
9+
10+ 'use strict' ;
11+
12+ module . exports = require ( 'jest-cli' ) ;
You can’t perform that action at this time.
0 commit comments