Comparing version 0.4.17 to 0.4.18
{ | ||
"name": "jest-cli", | ||
"description": "Painless JavaScript Unit Testing.", | ||
"version": "0.4.17", | ||
"version": "0.4.18", | ||
"main": "src/jest.js", | ||
@@ -6,0 +6,0 @@ "dependencies": { |
@@ -46,2 +46,3 @@ # [Jest](http://facebook.github.io/jest/) [![Build Status](https://travis-ci.org/facebook/jest.svg?branch=master)](https://travis-ci.org/facebook/jest) | ||
- [`config.bail` [boolean]](http://facebook.github.io/jest/docs/api.html#config-bail-boolean) | ||
- [`config.cacheDirectory` [string]](http://facebook.github.io/jest/docs/api.html#config-cachedirectory-string) | ||
@@ -48,0 +49,0 @@ - [`config.collectCoverage` [boolean]](http://facebook.github.io/jest/docs/api.html#config-collectcoverage-boolean) |
@@ -318,3 +318,3 @@ /** | ||
if (!component.hasOwnProperty && component[slot] !== undefined || | ||
component.hasOwnProperty(slot) || | ||
(component.hasOwnProperty && component.hasOwnProperty(slot)) || | ||
/* jshint eqeqeq:false */ | ||
@@ -321,0 +321,0 @@ (type === 'object' && component[slot] != Object.prototype[slot])) { |
@@ -18,2 +18,3 @@ /** | ||
var DEFAULT_CONFIG_VALUES = { | ||
bail: false, | ||
cacheDirectory: path.resolve(__dirname, '..', '..', '.haste_cache'), | ||
@@ -36,3 +37,4 @@ coverageCollector: require.resolve('../IstanbulCollector'), | ||
noHighlight: false, | ||
preprocessCachingDisabled: false | ||
preprocessCachingDisabled: false, | ||
verbose: false | ||
}; | ||
@@ -218,2 +220,3 @@ | ||
break; | ||
case 'bail': | ||
case 'preprocessCachingDisabled': | ||
@@ -220,0 +223,0 @@ case 'coverageReporters': |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
362064
9521
100