chai 5.0.0-alpha.0 → 5.0.0-alpha.2
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 -1
- package/chai.js +1203 -1555
- 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 -1
- package/package.json +13 -25
- package/web-test-runner.config.js +17 -0
- package/chai.cjs +0 -4480
- package/index.mjs +0 -14
package/README.md
CHANGED
|
@@ -145,7 +145,6 @@ Chai offers a robust Plugin architecture for extending Chai's assertions and int
|
|
|
145
145
|
- [chaijs / chai-docs](https://github.com/chaijs/chai-docs): The chaijs.com website source code.
|
|
146
146
|
- [chaijs / assertion-error](https://github.com/chaijs/assertion-error): Custom `Error` constructor thrown upon an assertion failing.
|
|
147
147
|
- [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
148
|
- [chaijs / check-error](https://github.com/chaijs/check-error): Error comparison and information related utility for Node.js and the browser.
|
|
150
149
|
- [chaijs / loupe](https://github.com/chaijs/loupe): Inspect utility for Node.js and browsers.
|
|
151
150
|
- [chaijs / pathval](https://github.com/chaijs/pathval): Object value retrieval given a string path.
|