@public-ui/visual-tests 2.1.5-rc.8 → 2.1.6

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@public-ui/visual-tests",
3
- "version": "2.1.5-rc.8",
3
+ "version": "2.1.6",
4
4
  "license": "EUPL-1.2",
5
5
  "homepage": "https://public-ui.github.io",
6
6
  "repository": {
@@ -22,20 +22,20 @@
22
22
  "kolibri-visual-test": "src/index.js"
23
23
  },
24
24
  "dependencies": {
25
- "@playwright/test": "1.45.0",
25
+ "@playwright/test": "1.45.3",
26
26
  "axe-playwright": "2.0.1",
27
27
  "portfinder": "1.0.32",
28
28
  "serve": "14.2.3",
29
- "@public-ui/sample-react": "2.1.5-rc.8"
29
+ "@public-ui/sample-react": "2.1.6"
30
30
  },
31
31
  "devDependencies": {
32
- "@babel/eslint-parser": "7.24.7",
32
+ "@babel/eslint-parser": "7.25.1",
33
33
  "@babel/plugin-syntax-import-attributes": "7.24.7",
34
- "@babel/preset-env": "7.24.7",
34
+ "@babel/preset-env": "7.25.3",
35
35
  "eslint": "8.57.0",
36
36
  "eslint-plugin-no-loops": "0.4.0",
37
- "knip": "5.23.0",
38
- "prettier": "3.3.2"
37
+ "knip": "5.27.0",
38
+ "prettier": "3.3.3"
39
39
  },
40
40
  "files": [
41
41
  "playwright.config.js",
@@ -110,6 +110,11 @@ ROUTES.set('card/basic', {
110
110
  skipFailures: false,
111
111
  },
112
112
  });
113
+ ROUTES.set('combobox/basic', {
114
+ axe: {
115
+ skipFailures: false,
116
+ },
117
+ });
113
118
  ROUTES.set('details/basic', {
114
119
  axe: {
115
120
  skipFailures: false,
@@ -410,6 +415,11 @@ ROUTES.set('scenarios/disabled-interactive-scenario', {
410
415
  });
411
416
 
412
417
  /* Focus tests */
418
+ ROUTES.set('scenarios/focus-elements?component=accordion');
419
+ ROUTES.set('scenarios/focus-elements?component=button');
420
+ ROUTES.set('scenarios/focus-elements?component=buttonLink');
421
+ ROUTES.set('scenarios/focus-elements?component=combobox');
422
+ ROUTES.set('scenarios/focus-elements?component=details');
413
423
  ROUTES.set('scenarios/focus-elements?component=inputCheckbox');
414
424
  ROUTES.set('scenarios/focus-elements?component=inputColor');
415
425
  ROUTES.set('scenarios/focus-elements?component=inputDate');
@@ -421,12 +431,8 @@ ROUTES.set('scenarios/focus-elements?component=inputPassword');
421
431
  ROUTES.set('scenarios/focus-elements?component=inputRadio');
422
432
  ROUTES.set('scenarios/focus-elements?component=inputRange');
423
433
  ROUTES.set('scenarios/focus-elements?component=inputText');
434
+ ROUTES.set('scenarios/focus-elements?component=link');
435
+ ROUTES.set('scenarios/focus-elements?component=linkButton');
424
436
  ROUTES.set('scenarios/focus-elements?component=select');
425
437
  ROUTES.set('scenarios/focus-elements?component=selectMultiple');
426
438
  ROUTES.set('scenarios/focus-elements?component=textarea');
427
- ROUTES.set('scenarios/focus-elements?component=accordion');
428
- ROUTES.set('scenarios/focus-elements?component=button');
429
- ROUTES.set('scenarios/focus-elements?component=buttonLink');
430
- ROUTES.set('scenarios/focus-elements?component=details');
431
- ROUTES.set('scenarios/focus-elements?component=link');
432
- ROUTES.set('scenarios/focus-elements?component=linkButton');