sinon-test
Advanced tools
Comparing version 2.4.1 to 2.4.2
@@ -196,6 +196,2 @@ /** | ||
} | ||
sinonTest.configureTest = function(sinon, config) { | ||
console.log("sinonTest.configureTest is deprecated and will be removed from the public API in a future version of sinon-test"); // eslint-disable-line | ||
return test.configure(sinon, config); | ||
}; | ||
@@ -202,0 +198,0 @@ var lib = sinonTest; |
@@ -202,6 +202,2 @@ (function (global, factory) { | ||
} | ||
sinonTest.configureTest = function(sinon, config) { | ||
console.log("sinonTest.configureTest is deprecated and will be removed from the public API in a future version of sinon-test"); // eslint-disable-line | ||
return test.configure(sinon, config); | ||
}; | ||
@@ -208,0 +204,0 @@ var lib = sinonTest; |
2.4.2 / 2020-01-28 | ||
================== | ||
* Adjust for @sinonjs/referee@4 breaking changes | ||
* Upgrade sinon peerDependency to allow 8.x | ||
* Remove configureTest | ||
2.4.1 / 2019-12-03 | ||
@@ -3,0 +10,0 @@ ================== |
/** | ||
* Test case, sandboxes all test functions | ||
* | ||
* @author Christian Johansen (christian@cjohansen.no) | ||
* @license BSD | ||
* | ||
* Copyright (c) 2010-2013 Christian Johansen | ||
*/ | ||
@@ -16,7 +11,3 @@ "use strict"; | ||
} | ||
sinonTest.configureTest = function(sinon, config) { | ||
console.log("sinonTest.configureTest is deprecated and will be removed from the public API in a future version of sinon-test"); // eslint-disable-line | ||
return test.configure(sinon, config); | ||
}; | ||
module.exports = sinonTest; |
{ | ||
"name": "sinon-test", | ||
"version": "2.4.1", | ||
"version": "2.4.2", | ||
"description": "", | ||
@@ -18,3 +18,3 @@ "main": "lib/index.js", | ||
"prepare": "run-p test lint build", | ||
"preversion": "test-repos/do-test.sh && ./scripts/preversion.sh" | ||
"preversion": "npm run integration-test && ./scripts/preversion.sh" | ||
}, | ||
@@ -40,3 +40,3 @@ "greenkeeper": { | ||
"devDependencies": { | ||
"@sinonjs/referee": "^3.2.0", | ||
"@sinonjs/referee": "^4.0.0", | ||
"es6-promise": "^4.2.4", | ||
@@ -51,3 +51,3 @@ "eslint": "^6.5.1", | ||
"npm-run-all": "^4.1.3", | ||
"nyc": "^14.1.1", | ||
"nyc": "^15.0.0", | ||
"phantomjs-prebuilt": "^2.1.16", | ||
@@ -58,7 +58,7 @@ "pre-commit": "^1.2.2", | ||
"rollup-plugin-commonjs": "^10.1.0", | ||
"sinon": "^7.5.0" | ||
"sinon": "^8.1.0" | ||
}, | ||
"peerDependencies": { | ||
"sinon": "2.x - 7.x" | ||
"sinon": "2.x - 8.x" | ||
} | ||
} |
25756
508