chai 5.0.0-alpha.1 → 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 -7
- package/chai.js +1068 -1362
- package/karma.conf.cjs +1 -0
- package/lib/chai/assertion.js +1 -1
- package/lib/chai/core/assertions.js +3 -3
- package/lib/chai/interface/assert.js +2 -1
- package/lib/chai/interface/expect.js +2 -1
- package/lib/chai/interface/should.js +1 -1
- package/lib/chai/utils/expectTypes.js +2 -2
- package/lib/chai/utils/getOperator.js +2 -3
- package/lib/chai/utils/index.js +1 -1
- package/lib/chai/utils/type-detect.js +16 -0
- package/lib/chai.js +1 -7
- package/package.json +10 -16
- package/web-test-runner.config.js +17 -0
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
|
|
@@ -145,7 +139,6 @@ Chai offers a robust Plugin architecture for extending Chai's assertions and int
|
|
|
145
139
|
- [chaijs / chai-docs](https://github.com/chaijs/chai-docs): The chaijs.com website source code.
|
|
146
140
|
- [chaijs / assertion-error](https://github.com/chaijs/assertion-error): Custom `Error` constructor thrown upon an assertion failing.
|
|
147
141
|
- [chaijs / deep-eql](https://github.com/chaijs/deep-eql): Improved deep equality testing for Node.js and the browser.
|
|
148
|
-
- [chaijs / type-detect](https://github.com/chaijs/type-detect): Improved typeof detection for Node.js and the browser.
|
|
149
142
|
- [chaijs / check-error](https://github.com/chaijs/check-error): Error comparison and information related utility for Node.js and the browser.
|
|
150
143
|
- [chaijs / loupe](https://github.com/chaijs/loupe): Inspect utility for Node.js and browsers.
|
|
151
144
|
- [chaijs / pathval](https://github.com/chaijs/pathval): Object value retrieval given a string path.
|