vitest 0.32.4 → 0.33.0
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/{chunk-install-pkg.3fc886f2.js → chunk-install-pkg.23da664c.js} +2 -2
- package/dist/cli.js +3 -3
- package/dist/config.cjs +2 -2
- package/dist/config.js +2 -2
- package/dist/entry.js +1 -1
- package/dist/environments.js +1 -1
- package/dist/node.js +3 -3
- package/dist/{vendor-cli-api.cb31e1db.js → vendor-cli-api.bf4b62a8.js} +1115 -1028
- package/dist/{vendor-environments.75f2b63d.js → vendor-environments.392ddf08.js} +3 -0
- package/package.json +10 -10
|
@@ -128,6 +128,7 @@ const LIVING_KEYS = [
|
|
|
128
128
|
"StorageEvent",
|
|
129
129
|
"ProgressEvent",
|
|
130
130
|
"PageTransitionEvent",
|
|
131
|
+
"SubmitEvent",
|
|
131
132
|
"UIEvent",
|
|
132
133
|
"FocusEvent",
|
|
133
134
|
"InputEvent",
|
|
@@ -176,6 +177,8 @@ const LIVING_KEYS = [
|
|
|
176
177
|
"AbortController",
|
|
177
178
|
"AbortSignal",
|
|
178
179
|
"ArrayBuffer",
|
|
180
|
+
"DOMRectReadOnly",
|
|
181
|
+
"DOMRect",
|
|
179
182
|
// not specified in docs, but is available
|
|
180
183
|
"Image",
|
|
181
184
|
"Audio",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vitest",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.33.0",
|
|
5
5
|
"description": "A blazing fast unit test framework powered by Vite",
|
|
6
6
|
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -138,21 +138,21 @@
|
|
|
138
138
|
"chai": "^4.3.7",
|
|
139
139
|
"debug": "^4.3.4",
|
|
140
140
|
"local-pkg": "^0.4.3",
|
|
141
|
-
"magic-string": "^0.30.
|
|
141
|
+
"magic-string": "^0.30.1",
|
|
142
142
|
"pathe": "^1.1.1",
|
|
143
143
|
"picocolors": "^1.0.0",
|
|
144
144
|
"std-env": "^3.3.3",
|
|
145
145
|
"strip-literal": "^1.0.1",
|
|
146
146
|
"tinybench": "^2.5.0",
|
|
147
|
-
"tinypool": "^0.
|
|
147
|
+
"tinypool": "^0.6.0",
|
|
148
148
|
"vite": "^3.0.0 || ^4.0.0",
|
|
149
149
|
"why-is-node-running": "^2.2.2",
|
|
150
|
-
"@vitest/expect": "0.
|
|
151
|
-
"@vitest/runner": "0.
|
|
152
|
-
"@vitest/snapshot": "0.
|
|
153
|
-
"@vitest/
|
|
154
|
-
"@vitest/
|
|
155
|
-
"vite-node": "0.
|
|
150
|
+
"@vitest/expect": "0.33.0",
|
|
151
|
+
"@vitest/runner": "0.33.0",
|
|
152
|
+
"@vitest/snapshot": "0.33.0",
|
|
153
|
+
"@vitest/spy": "0.33.0",
|
|
154
|
+
"@vitest/utils": "0.33.0",
|
|
155
|
+
"vite-node": "0.33.0"
|
|
156
156
|
},
|
|
157
157
|
"devDependencies": {
|
|
158
158
|
"@ampproject/remapping": "^2.2.1",
|
|
@@ -174,7 +174,7 @@
|
|
|
174
174
|
"event-target-polyfill": "^0.0.3",
|
|
175
175
|
"execa": "^7.1.1",
|
|
176
176
|
"expect-type": "^0.16.0",
|
|
177
|
-
"fast-glob": "^3.
|
|
177
|
+
"fast-glob": "^3.3.0",
|
|
178
178
|
"find-up": "^6.3.0",
|
|
179
179
|
"flatted": "^3.2.7",
|
|
180
180
|
"get-tsconfig": "^4.6.2",
|