vitest 0.0.127 → 0.0.128

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/cli.js CHANGED
@@ -1700,7 +1700,7 @@ function execa(file, args, options) {
1700
1700
  return mergePromise(spawned, handlePromiseOnce);
1701
1701
  }
1702
1702
 
1703
- var version = "0.0.127";
1703
+ var version = "0.0.128";
1704
1704
 
1705
1705
  const CLOSE_TIMEOUT = 1e3;
1706
1706
  const cli = cac("vitest");
package/dist/entry.js CHANGED
@@ -1317,9 +1317,9 @@ function processError(err) {
1317
1317
  err.stackStr = String(err.stack);
1318
1318
  if (err.name)
1319
1319
  err.nameStr = String(err.name);
1320
- if (err.expected && typeof err.expected !== "string")
1320
+ if (typeof err.expected !== "string")
1321
1321
  err.expected = stringify(err.expected);
1322
- if (err.actual && typeof err.actual !== "string")
1322
+ if (typeof err.actual !== "string")
1323
1323
  err.actual = stringify(err.actual);
1324
1324
  return serializeError(err);
1325
1325
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vitest",
3
- "version": "0.0.127",
3
+ "version": "0.0.128",
4
4
  "description": "A blazing fast unit test framework powered by Vite",
5
5
  "keywords": [
6
6
  "vite",
@@ -91,7 +91,7 @@
91
91
  "strip-ansi": "^7.0.1",
92
92
  "typescript": "^4.5.4",
93
93
  "ws": "^8.4.0",
94
- "@vitest/ui": "0.0.127"
94
+ "@vitest/ui": "0.0.128"
95
95
  },
96
96
  "peerDependencies": {
97
97
  "c8": "*",