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 +1 -1
- package/dist/entry.js +2 -2
- package/package.json +2 -2
package/dist/cli.js
CHANGED
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 (
|
|
1320
|
+
if (typeof err.expected !== "string")
|
|
1321
1321
|
err.expected = stringify(err.expected);
|
|
1322
|
-
if (
|
|
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.
|
|
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.
|
|
94
|
+
"@vitest/ui": "0.0.128"
|
|
95
95
|
},
|
|
96
96
|
"peerDependencies": {
|
|
97
97
|
"c8": "*",
|