@dargmuesli/nuxt-vio-testing 13.2.7 → 13.3.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.
Files changed (2) hide show
  1. package/e2e/utils/tests.ts +23 -23
  2. package/package.json +11 -11
@@ -24,29 +24,29 @@ export const testMetadata = async ({
24
24
  { key: 'lang', value: 'en' },
25
25
  ],
26
26
  },
27
- // {
28
- // tag: 'link',
29
- // attributes: [
30
- // {
31
- // key: 'data-testid',
32
- // value: 'polyfill-preload',
33
- // },
34
- // { key: 'rel', value: 'preload' },
35
- // {
36
- // key: 'href',
37
- // value:
38
- // 'https://polyfill.io/v3/polyfill.min.js?features=Promise&flags=gated',
39
- // },
40
- // {
41
- // key: 'crossorigin',
42
- // value: 'anonymous',
43
- // },
44
- // {
45
- // key: 'as',
46
- // value: 'script',
47
- // },
48
- // ],
49
- // },
27
+ {
28
+ tag: 'link',
29
+ attributes: [
30
+ {
31
+ key: 'data-testid',
32
+ value: 'polyfill-preload',
33
+ },
34
+ { key: 'rel', value: 'preload' },
35
+ {
36
+ key: 'href',
37
+ value:
38
+ 'https://cdnjs.cloudflare.com/polyfill/v3/polyfill.min.js?features=Promise&flags=gated',
39
+ },
40
+ {
41
+ key: 'crossorigin',
42
+ value: 'anonymous',
43
+ },
44
+ {
45
+ key: 'as',
46
+ value: 'script',
47
+ },
48
+ ],
49
+ },
50
50
  {
51
51
  tag: 'meta',
52
52
  attributes: [
package/package.json CHANGED
@@ -1,20 +1,20 @@
1
1
  {
2
2
  "devDependencies": {
3
3
  "@axe-core/playwright": "4.10.0",
4
- "@eslint/js": "9.9.1",
5
- "@playwright/test": "1.46.1",
6
- "@types/node": "20.16.2",
4
+ "@eslint/js": "9.10.0",
5
+ "@playwright/test": "1.47.0",
6
+ "@types/node": "22.5.4",
7
7
  "cross-env": "7.0.3",
8
- "eslint": "9.9.1",
8
+ "eslint": "9.10.0",
9
9
  "eslint-config-prettier": "9.1.0",
10
10
  "eslint-plugin-prettier": "5.2.1",
11
11
  "lodash-es": "4.17.21",
12
- "typescript": "5.5.4",
13
- "typescript-eslint": "8.3.0",
12
+ "typescript": "5.6.2",
13
+ "typescript-eslint": "8.5.0",
14
14
  "ufo": "1.5.4"
15
15
  },
16
16
  "engines": {
17
- "node": "20"
17
+ "node": "22"
18
18
  },
19
19
  "files": [
20
20
  "e2e/fixtures",
@@ -25,7 +25,7 @@
25
25
  ],
26
26
  "name": "@dargmuesli/nuxt-vio-testing",
27
27
  "peerDependencies": {
28
- "playwright-core": "1.46.1"
28
+ "playwright-core": "1.47.0"
29
29
  },
30
30
  "publishConfig": {
31
31
  "access": "public"
@@ -41,8 +41,8 @@
41
41
  "lint:ts": "tsc --noEmit",
42
42
  "test:e2e": "playwright test",
43
43
  "test:e2e:docker:br": "pnpm run test:e2e:docker:build && pnpm run test:e2e:docker:run",
44
- "test:e2e:docker:build": "docker build -t test-e2e_development --build-arg UID=$(id -u) --build-arg GID=$(id -g) --target test-e2e_development ..",
45
- "test:e2e:docker:run": "docker run -u 0:0 --rm -v \"$PWD/..:/srv/app\" -v \"$(pnpm store path):/srv/.pnpm-store/v3\" test-e2e_development",
44
+ "test:e2e:docker:build": "sudo docker build -t test-e2e_development --build-arg UID=$(id -u) --build-arg GID=$(id -g) --target test-e2e_development ..",
45
+ "test:e2e:docker:run": "sudo docker run --rm -v \"$PWD/..:/srv/app\" -v \"$(pnpm store path):/srv/.pnpm-store/v3\" test-e2e_development",
46
46
  "test:e2e:docker:server:dev": "pnpm run test:e2e:docker:br pnpm --dir tests run test:e2e:server:dev",
47
47
  "test:e2e:docker:server:dev:update": "pnpm run test:e2e:docker:server:dev --update-snapshots",
48
48
  "test:e2e:docker:server:node": "pnpm run test:e2e:docker:br pnpm --dir tests run test:e2e:server:node",
@@ -54,5 +54,5 @@
54
54
  "test:e2e:server:static": "cross-env NODE_ENV=production PORT=\"${PORT:-3002}\" SITE_URL=\"${SITE_URL:-https://localhost:3002}\" VIO_SERVER=static pnpm run test:e2e"
55
55
  },
56
56
  "type": "module",
57
- "version": "13.2.7"
57
+ "version": "13.3.0"
58
58
  }