@vitest/runner 4.0.6 → 4.0.8
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 +2 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -565,7 +565,7 @@ function createSuiteHooks() {
|
|
|
565
565
|
}
|
|
566
566
|
function parseArguments(optionsOrFn, timeoutOrTest) {
|
|
567
567
|
if (timeoutOrTest != null && typeof timeoutOrTest === "object") {
|
|
568
|
-
throw new TypeError(`
|
|
568
|
+
throw new TypeError(`Signature "test(name, fn, { ... })" was deprecated in Vitest 3 and removed in Vitest 4. Please, provide options as a second argument instead.`);
|
|
569
569
|
}
|
|
570
570
|
let options = {};
|
|
571
571
|
let fn;
|
|
@@ -1767,6 +1767,7 @@ for (let i = 97; i < 123; i++) {
|
|
|
1767
1767
|
for (let i = 0; i < 10; i++) {
|
|
1768
1768
|
table.push(i.toString(10));
|
|
1769
1769
|
}
|
|
1770
|
+
table.push("+", "/");
|
|
1770
1771
|
function encodeUint8Array(bytes) {
|
|
1771
1772
|
let base64 = "";
|
|
1772
1773
|
const len = bytes.byteLength;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vitest/runner",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "4.0.
|
|
4
|
+
"version": "4.0.8",
|
|
5
5
|
"description": "Vitest test runner",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"funding": "https://opencollective.com/vitest",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
],
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"pathe": "^2.0.3",
|
|
42
|
-
"@vitest/utils": "4.0.
|
|
42
|
+
"@vitest/utils": "4.0.8"
|
|
43
43
|
},
|
|
44
44
|
"scripts": {
|
|
45
45
|
"build": "premove dist && rollup -c",
|