@nuxt/test-utils 3.12.0 → 3.12.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.
- package/package.json +11 -10
- package/playwright.d.ts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nuxt/test-utils",
|
|
3
|
-
"version": "3.12.
|
|
3
|
+
"version": "3.12.1",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/nuxt/test-utils.git"
|
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
"e2e.d.ts",
|
|
26
26
|
"experimental.d.ts",
|
|
27
27
|
"module.d.ts",
|
|
28
|
+
"playwright.d.ts",
|
|
28
29
|
"runtime.d.ts",
|
|
29
30
|
"vitest-environment.d.ts"
|
|
30
31
|
],
|
|
@@ -39,8 +40,8 @@
|
|
|
39
40
|
"release": "pnpm prepack && pnpm test:examples && changelogen --release --push"
|
|
40
41
|
},
|
|
41
42
|
"dependencies": {
|
|
42
|
-
"@nuxt/kit": "^3.
|
|
43
|
-
"@nuxt/schema": "^3.
|
|
43
|
+
"@nuxt/kit": "^3.11.1",
|
|
44
|
+
"@nuxt/schema": "^3.11.1",
|
|
44
45
|
"c12": "^1.10.0",
|
|
45
46
|
"consola": "^3.2.3",
|
|
46
47
|
"defu": "^6.1.4",
|
|
@@ -58,7 +59,7 @@
|
|
|
58
59
|
"radix3": "^1.1.1",
|
|
59
60
|
"scule": "^1.3.0",
|
|
60
61
|
"std-env": "^3.7.0",
|
|
61
|
-
"ufo": "^1.5.
|
|
62
|
+
"ufo": "^1.5.2",
|
|
62
63
|
"unenv": "^1.9.0",
|
|
63
64
|
"unplugin": "^1.10.0",
|
|
64
65
|
"vitest-environment-nuxt": "^1.0.0"
|
|
@@ -70,7 +71,7 @@
|
|
|
70
71
|
"@nuxt/eslint-config": "0.2.0",
|
|
71
72
|
"@nuxt/module-builder": "0.5.5",
|
|
72
73
|
"@playwright/test": "1.42.1",
|
|
73
|
-
"@testing-library/vue": "8.0.
|
|
74
|
+
"@testing-library/vue": "8.0.3",
|
|
74
75
|
"@types/estree": "1.0.5",
|
|
75
76
|
"@types/jsdom": "21.1.6",
|
|
76
77
|
"@types/semver": "7.5.8",
|
|
@@ -84,7 +85,7 @@
|
|
|
84
85
|
"eslint-plugin-unicorn": "51.0.1",
|
|
85
86
|
"h3": "1.11.1",
|
|
86
87
|
"jiti": "1.21.0",
|
|
87
|
-
"nuxt": "3.
|
|
88
|
+
"nuxt": "3.11.1",
|
|
88
89
|
"playwright-core": "1.42.1",
|
|
89
90
|
"rollup": "4.13.0",
|
|
90
91
|
"semver": "7.6.0",
|
|
@@ -103,7 +104,7 @@
|
|
|
103
104
|
"@vitest/ui": "^0.34.6 || ^1.0.0",
|
|
104
105
|
"@vue/test-utils": "^2.4.2",
|
|
105
106
|
"h3": "*",
|
|
106
|
-
"happy-dom": "^9.10.9 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0",
|
|
107
|
+
"happy-dom": "^9.10.9 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^14.0.0",
|
|
107
108
|
"jsdom": "^22.0.0 || ^23.0.0 || ^24.0.0",
|
|
108
109
|
"playwright-core": "^1.34.3",
|
|
109
110
|
"vite": "*",
|
|
@@ -144,8 +145,8 @@
|
|
|
144
145
|
}
|
|
145
146
|
},
|
|
146
147
|
"resolutions": {
|
|
147
|
-
"@nuxt/kit": "^3.
|
|
148
|
-
"@nuxt/schema": "^3.
|
|
148
|
+
"@nuxt/kit": "^3.11.1",
|
|
149
|
+
"@nuxt/schema": "^3.11.1",
|
|
149
150
|
"@nuxt/test-utils": "workspace:*",
|
|
150
151
|
"rollup": "4.13.0",
|
|
151
152
|
"vite": "5.1.6",
|
|
@@ -154,5 +155,5 @@
|
|
|
154
155
|
"engines": {
|
|
155
156
|
"node": "^14.18.0 || >=16.10.0"
|
|
156
157
|
},
|
|
157
|
-
"packageManager": "pnpm@8.15.
|
|
158
|
+
"packageManager": "pnpm@8.15.5"
|
|
158
159
|
}
|
package/playwright.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './dist/playwright'
|