jasmine-core
Advanced tools
Comparing version 3.8.0 to 3.9.0
@@ -8,7 +8,8 @@ module.exports = require("./jasmine-core/jasmine.js"); | ||
var rootPath = path.join(__dirname, "jasmine-core"), | ||
bootFiles = ['boot.js'], | ||
bootFiles = ['boot0.js', 'boot1.js'], | ||
legacyBootFiles = ['boot.js'], | ||
nodeBootFiles = ['node_boot.js'], | ||
cssFiles = [], | ||
jsFiles = [], | ||
jsFilesToSkip = ['jasmine.js'].concat(bootFiles, nodeBootFiles); | ||
jsFilesToSkip = ['jasmine.js'].concat(bootFiles, legacyBootFiles, nodeBootFiles); | ||
@@ -15,0 +16,0 @@ fs.readdirSync(rootPath).forEach(function(file) { |
@@ -24,2 +24,6 @@ /* | ||
/** | ||
NOTE: This file is deprecated and will be removed in a future release. | ||
Include both boot0.js and boot1.js (in that order) instead. | ||
Starting with version 2.0, this file "boots" Jasmine, performing all of the necessary initialization before executing the loaded environment and all of a project's specs. This file should be loaded after `jasmine.js` and `jasmine_html.js`, but before any project source files or spec files are loaded. Thus this file can also be used to customize Jasmine for a project. | ||
@@ -26,0 +30,0 @@ |
/** | ||
NOTE: This file is deprecated and will be removed in a future release. | ||
Include both boot0.js and boot1.js (in that order) instead. | ||
Starting with version 2.0, this file "boots" Jasmine, performing all of the necessary initialization before executing the loaded environment and all of a project's specs. This file should be loaded after `jasmine.js` and `jasmine_html.js`, but before any project source files or spec files are loaded. Thus this file can also be used to customize Jasmine for a project. | ||
@@ -3,0 +7,0 @@ |
@@ -561,5 +561,5 @@ /* | ||
var failFastCheckbox = optionsMenuDom.querySelector('#jasmine-fail-fast'); | ||
failFastCheckbox.checked = config.failFast; | ||
failFastCheckbox.checked = config.stopOnSpecFailure; | ||
failFastCheckbox.onclick = function() { | ||
navigateWithNewParam('failFast', !config.failFast); | ||
navigateWithNewParam('failFast', !config.stopOnSpecFailure); | ||
}; | ||
@@ -570,5 +570,8 @@ | ||
); | ||
throwCheckbox.checked = config.oneFailurePerSpec; | ||
throwCheckbox.checked = config.stopSpecOnExpectationFailure; | ||
throwCheckbox.onclick = function() { | ||
navigateWithNewParam('oneFailurePerSpec', !config.oneFailurePerSpec); | ||
navigateWithNewParam( | ||
'oneFailurePerSpec', | ||
!config.stopSpecOnExpectationFailure | ||
); | ||
}; | ||
@@ -575,0 +578,0 @@ |
{ | ||
"name": "jasmine-core", | ||
"license": "MIT", | ||
"version": "3.8.0", | ||
"version": "3.9.0", | ||
"repository": { | ||
@@ -40,3 +40,2 @@ "type": "git", | ||
"eslint-plugin-compat": "^3.8.0", | ||
"fast-check": "^1.21.0", | ||
"fast-glob": "^2.2.6", | ||
@@ -43,0 +42,0 @@ "grunt": "^1.0.4", |
Sorry, the diff of this file is too big to display
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
393911
18
27
10873
0