chai 5.0.0-alpha.2 → 5.0.0-rc.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -6
- package/chai.js +1 -6
- package/lib/chai.js +0 -6
- package/package.json +1 -4
package/README.md
CHANGED
|
@@ -23,12 +23,6 @@
|
|
|
23
23
|
src="https://img.shields.io/badge/node-%3E=4.0-blue.svg?style=flat-square"
|
|
24
24
|
/>
|
|
25
25
|
</a>
|
|
26
|
-
<a href="https://codecov.io/gh/chaijs/chai">
|
|
27
|
-
<img
|
|
28
|
-
alt="coverage:?"
|
|
29
|
-
src="https://img.shields.io/codecov/c/github/chaijs/chai.svg?style=flat-square"
|
|
30
|
-
/>
|
|
31
|
-
</a>
|
|
32
26
|
<br/>
|
|
33
27
|
<a href="https://chai-slack.herokuapp.com/">
|
|
34
28
|
<img
|
package/chai.js
CHANGED
|
@@ -3676,7 +3676,6 @@ assert.isNotEmpty = function(val, msg) {
|
|
|
3676
3676
|
|
|
3677
3677
|
// lib/chai.js
|
|
3678
3678
|
var used = [];
|
|
3679
|
-
var version = "4.3.3";
|
|
3680
3679
|
function use(fn) {
|
|
3681
3680
|
const exports = {
|
|
3682
3681
|
AssertionError,
|
|
@@ -3703,8 +3702,7 @@ export {
|
|
|
3703
3702
|
expect,
|
|
3704
3703
|
should,
|
|
3705
3704
|
use,
|
|
3706
|
-
utils_exports as util
|
|
3707
|
-
version
|
|
3705
|
+
utils_exports as util
|
|
3708
3706
|
};
|
|
3709
3707
|
/*!
|
|
3710
3708
|
* Chai - flag utility
|
|
@@ -3974,9 +3972,6 @@ export {
|
|
|
3974
3972
|
/*!
|
|
3975
3973
|
* Aliases.
|
|
3976
3974
|
*/
|
|
3977
|
-
/*!
|
|
3978
|
-
* Chai version
|
|
3979
|
-
*/
|
|
3980
3975
|
/*!
|
|
3981
3976
|
* Assertion Error
|
|
3982
3977
|
*/
|
package/lib/chai.js
CHANGED
package/package.json
CHANGED
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"Veselin Todorov <hi@vesln.com>",
|
|
19
19
|
"John Firebaugh <john.firebaugh@gmail.com>"
|
|
20
20
|
],
|
|
21
|
-
"version": "5.0.0-
|
|
21
|
+
"version": "5.0.0-rc.0",
|
|
22
22
|
"repository": {
|
|
23
23
|
"type": "git",
|
|
24
24
|
"url": "https://github.com/chaijs/chai"
|
|
@@ -35,7 +35,6 @@
|
|
|
35
35
|
"test": "npm run test-node && npm run test-chrome",
|
|
36
36
|
"test-node": "mocha --require ./test/bootstrap/index.js --reporter dot test/*.js",
|
|
37
37
|
"test-chrome": "web-test-runner --playwright",
|
|
38
|
-
"test-cov": "istanbul cover ./node_modules/.bin/_mocha -- --require ./test/bootstrap/index.js test/*.js",
|
|
39
38
|
"clean": "rm -f chai.js coverage"
|
|
40
39
|
},
|
|
41
40
|
"engines": {
|
|
@@ -54,9 +53,7 @@
|
|
|
54
53
|
"@web/test-runner": "^0.17.2",
|
|
55
54
|
"@web/test-runner-playwright": "^0.10.2",
|
|
56
55
|
"bump-cli": "^1.1.3",
|
|
57
|
-
"codecov": "^3.8.1",
|
|
58
56
|
"esbuild": "^0.17.3",
|
|
59
|
-
"istanbul": "^0.4.3",
|
|
60
57
|
"mocha": "^8.3.0"
|
|
61
58
|
}
|
|
62
59
|
}
|