@dargmuesli/nuxt-vio-testing 20.6.0 → 20.6.2
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 +4 -4
- package/playwright.config.ts +1 -1
package/package.json
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
"devDependencies": {
|
|
3
3
|
"@axe-core/playwright": "4.11.1",
|
|
4
4
|
"@eslint/js": "9.39.2",
|
|
5
|
-
"@playwright/test": "1.58.
|
|
6
|
-
"@types/node": "24.10.
|
|
5
|
+
"@playwright/test": "1.58.2",
|
|
6
|
+
"@types/node": "24.10.11",
|
|
7
7
|
"cross-env": "10.1.0",
|
|
8
8
|
"eslint": "9.39.2",
|
|
9
9
|
"eslint-config-prettier": "10.1.8",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
],
|
|
26
26
|
"name": "@dargmuesli/nuxt-vio-testing",
|
|
27
27
|
"peerDependencies": {
|
|
28
|
-
"playwright-core": "1.58.
|
|
28
|
+
"playwright-core": "1.58.2"
|
|
29
29
|
},
|
|
30
30
|
"publishConfig": {
|
|
31
31
|
"access": "public"
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"test:e2e:server:static": "cross-env NODE_ENV=production PORT=3002 NUXT_PUBLIC_SITE_URL=https://localhost:3002 VIO_SERVER=static pnpm run test:e2e"
|
|
55
55
|
},
|
|
56
56
|
"type": "module",
|
|
57
|
-
"version": "20.6.
|
|
57
|
+
"version": "20.6.2"
|
|
58
58
|
}
|
package/playwright.config.ts
CHANGED
|
@@ -87,7 +87,7 @@ export default defineConfig({
|
|
|
87
87
|
|
|
88
88
|
/* Run your local dev server before starting the tests */
|
|
89
89
|
webServer: {
|
|
90
|
-
command: `pnpm --dir ../src
|
|
90
|
+
command: `pnpm run --dir ../src certificates && pnpm run --dir ../src start:${process.env.VIO_SERVER || 'dev'}`,
|
|
91
91
|
env: {
|
|
92
92
|
NUXT_PUBLIC_VIO_IS_TESTING: 'true',
|
|
93
93
|
},
|