@public-ui/visual-tests 2.0.2 → 2.0.4-rc.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/README.md +6 -6
- package/package.json +6 -6
- package/tests/sample-app.routes.js +10 -0
- package/tests/theme-snapshots.spec.js +1 -1
package/README.md
CHANGED
|
@@ -19,16 +19,16 @@
|
|
|
19
19
|
"unused": "knip"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@public-ui/components": "2.0.
|
|
23
|
-
"@public-ui/schema": "2.0.
|
|
24
|
-
"@public-ui/visual-tests": "2.0.
|
|
22
|
+
"@public-ui/components": "2.0.3",
|
|
23
|
+
"@public-ui/schema": "2.0.3",
|
|
24
|
+
"@public-ui/visual-tests": "2.0.3",
|
|
25
25
|
"@typescript-eslint/eslint-plugin": "6.8.0",
|
|
26
26
|
"@typescript-eslint/parser": "6.8.0",
|
|
27
27
|
"depcheck": "1.4.7",
|
|
28
28
|
"eslint": "8.51.0",
|
|
29
|
-
"eslint-config-prettier": "9.
|
|
29
|
+
"eslint-config-prettier": "9.1.0",
|
|
30
30
|
"eslint-plugin-html": "7.1.0",
|
|
31
|
-
"eslint-plugin-jsdoc": "
|
|
31
|
+
"eslint-plugin-jsdoc": "48.0.2",
|
|
32
32
|
"eslint-plugin-json": "3.1.0",
|
|
33
33
|
"eslint-plugin-no-loops": "0.3.0",
|
|
34
34
|
"knip": "2.35.0",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"unbuild": "1.2.1"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
|
-
"@public-ui/components": "2.0.
|
|
40
|
+
"@public-ui/components": "2.0.3"
|
|
41
41
|
},
|
|
42
42
|
"sideEffects": false,
|
|
43
43
|
"type": "module",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@public-ui/visual-tests",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.4-rc.0",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": "https://github.com/public-ui/kolibri",
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"kolibri-visual-test": "src/index.js"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@playwright/test": "1.
|
|
23
|
-
"@public-ui/sample-react": "2.0.
|
|
22
|
+
"@playwright/test": "1.41.1",
|
|
23
|
+
"@public-ui/sample-react": "2.0.4-rc.0",
|
|
24
24
|
"axe-playwright": "1.2.3",
|
|
25
25
|
"portfinder": "1.0.32",
|
|
26
26
|
"serve": "14.2.1"
|
|
@@ -28,12 +28,12 @@
|
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@babel/eslint-parser": "7.23.3",
|
|
30
30
|
"@babel/plugin-syntax-import-attributes": "7.23.3",
|
|
31
|
-
"@babel/preset-env": "7.23.
|
|
31
|
+
"@babel/preset-env": "7.23.8",
|
|
32
32
|
"depcheck": "1.4.7",
|
|
33
33
|
"eslint": "8.56.0",
|
|
34
34
|
"eslint-plugin-no-loops": "0.3.0",
|
|
35
|
-
"knip": "3.
|
|
36
|
-
"prettier": "3.
|
|
35
|
+
"knip": "3.13.2",
|
|
36
|
+
"prettier": "3.2.4"
|
|
37
37
|
},
|
|
38
38
|
"files": [
|
|
39
39
|
"playwright.config.js",
|
|
@@ -294,6 +294,11 @@ ROUTES.set('split-button/basic', {
|
|
|
294
294
|
skipFailures: false,
|
|
295
295
|
},
|
|
296
296
|
});
|
|
297
|
+
ROUTES.set('table/column-alignment', {
|
|
298
|
+
axe: {
|
|
299
|
+
skipFailures: false,
|
|
300
|
+
},
|
|
301
|
+
});
|
|
297
302
|
ROUTES.set('table/sort-data', {
|
|
298
303
|
axe: {
|
|
299
304
|
skipFailures: false,
|
|
@@ -304,6 +309,11 @@ ROUTES.set('table/with-pagination', {
|
|
|
304
309
|
skipFailures: false,
|
|
305
310
|
},
|
|
306
311
|
});
|
|
312
|
+
ROUTES.set('table/pagination-position', {
|
|
313
|
+
axe: {
|
|
314
|
+
skipFailures: false,
|
|
315
|
+
},
|
|
316
|
+
});
|
|
307
317
|
ROUTES.set('tabs/basic', {
|
|
308
318
|
axe: {
|
|
309
319
|
skipFailures: false,
|