@vitest/expect 1.5.1 → 1.5.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/dist/index.js +1 -1
- package/package.json +4 -4
package/dist/index.js
CHANGED
@@ -382,7 +382,7 @@ function subsetEquality(object, subset, customTesters = []) {
|
|
382
382
|
if (!isObjectWithKeys(subset2))
|
383
383
|
return void 0;
|
384
384
|
return Object.keys(subset2).every((key) => {
|
385
|
-
if (typeof subset2[key] === "object") {
|
385
|
+
if (subset2[key] != null && typeof subset2[key] === "object") {
|
386
386
|
if (seenReferences.has(subset2[key]))
|
387
387
|
return equals(object2[key], subset2[key], filteredCustomTesters);
|
388
388
|
seenReferences.set(subset2[key], true);
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@vitest/expect",
|
3
3
|
"type": "module",
|
4
|
-
"version": "1.5.
|
4
|
+
"version": "1.5.2",
|
5
5
|
"description": "Jest's expect matchers as a Chai plugin",
|
6
6
|
"license": "MIT",
|
7
7
|
"funding": "https://opencollective.com/vitest",
|
@@ -31,14 +31,14 @@
|
|
31
31
|
],
|
32
32
|
"dependencies": {
|
33
33
|
"chai": "^4.3.10",
|
34
|
-
"@vitest/spy": "1.5.
|
35
|
-
"@vitest/utils": "1.5.
|
34
|
+
"@vitest/spy": "1.5.2",
|
35
|
+
"@vitest/utils": "1.5.2"
|
36
36
|
},
|
37
37
|
"devDependencies": {
|
38
38
|
"@types/chai": "4.3.6",
|
39
39
|
"picocolors": "^1.0.0",
|
40
40
|
"rollup-plugin-copy": "^3.5.0",
|
41
|
-
"@vitest/runner": "1.5.
|
41
|
+
"@vitest/runner": "1.5.2"
|
42
42
|
},
|
43
43
|
"scripts": {
|
44
44
|
"build": "rimraf dist && rollup -c",
|