@vitest/expect 1.0.4 → 1.1.1

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -1
  2. package/package.json +4 -4
package/dist/index.js CHANGED
@@ -1014,7 +1014,8 @@ const JestChaiExpect = (chai, utils) => {
1014
1014
  pass,
1015
1015
  `expected #{this} to have property "${propertyName}"${valueString}`,
1016
1016
  `expected #{this} to not have property "${propertyName}"${valueString}`,
1017
- actual
1017
+ expected,
1018
+ exists ? value : void 0
1018
1019
  );
1019
1020
  });
1020
1021
  def("toBeCloseTo", function(received, precision = 2) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vitest/expect",
3
3
  "type": "module",
4
- "version": "1.0.4",
4
+ "version": "1.1.1",
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.0.4",
35
- "@vitest/utils": "1.0.4"
34
+ "@vitest/spy": "1.1.1",
35
+ "@vitest/utils": "1.1.1"
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.0.4"
41
+ "@vitest/runner": "1.1.1"
42
42
  },
43
43
  "scripts": {
44
44
  "build": "rimraf dist && rollup -c",