@public-ui/visual-tests 3.0.1-7c24654fbf351e04b5635c30d957697951f63331.0 → 3.0.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 +8 -8
- package/src/index.js +1 -1
- package/tests/axe-snapshots.spec.js +3 -2
- package/tests/sample-app.routes.js +11 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@public-ui/visual-tests",
|
|
3
|
-
"version": "3.0.1
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": {
|
|
@@ -25,18 +25,18 @@
|
|
|
25
25
|
"kolibri-visual-test": "src/index.js"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@playwright/test": "1.
|
|
28
|
+
"@playwright/test": "1.53.0",
|
|
29
29
|
"axe-playwright": "2.1.0",
|
|
30
|
-
"portfinder": "1.0.
|
|
30
|
+
"portfinder": "1.0.37",
|
|
31
31
|
"serve": "14.2.4",
|
|
32
|
-
"@public-ui/sample-react": "3.0.1
|
|
32
|
+
"@public-ui/sample-react": "3.0.1"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@babel/eslint-parser": "7.
|
|
36
|
-
"@babel/plugin-syntax-import-attributes": "7.
|
|
37
|
-
"@babel/preset-env": "7.
|
|
35
|
+
"@babel/eslint-parser": "7.27.5",
|
|
36
|
+
"@babel/plugin-syntax-import-attributes": "7.27.1",
|
|
37
|
+
"@babel/preset-env": "7.27.2",
|
|
38
38
|
"eslint": "8.57.1",
|
|
39
|
-
"knip": "5.
|
|
39
|
+
"knip": "5.61.0",
|
|
40
40
|
"prettier": "3.5.3"
|
|
41
41
|
},
|
|
42
42
|
"files": [
|
package/src/index.js
CHANGED
|
@@ -35,7 +35,7 @@ const packageJson = JSON.parse(packageJsonContent);
|
|
|
35
35
|
console.log(`
|
|
36
36
|
Building React Sample App (v${packageJson?.version ?? '#.#.#'}) …`);
|
|
37
37
|
|
|
38
|
-
child_process.spawnSync('pnpm', ['run', 'build', '--', `--
|
|
38
|
+
child_process.spawnSync('pnpm', ['run', 'build', '--', `--outDir="${buildPath}"`], {
|
|
39
39
|
cwd: workingDir,
|
|
40
40
|
encoding: 'utf-8',
|
|
41
41
|
shell: true,
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { test } from '@playwright/test';
|
|
2
2
|
import { checkA11y, injectAxe } from 'axe-playwright';
|
|
3
3
|
import { ROUTES } from './sample-app.routes.js';
|
|
4
|
+
import process from 'process';
|
|
4
5
|
|
|
5
6
|
const themeName = (process.env.THEME_EXPORT || 'default').toLocaleLowerCase();
|
|
6
7
|
const rename = (snapshotName) => {
|
|
@@ -38,7 +39,7 @@ test.use({
|
|
|
38
39
|
|
|
39
40
|
ROUTES.forEach((options, route) => {
|
|
40
41
|
// Skip unnecessary axe tests
|
|
41
|
-
if (options?.axe?.skip === true) {
|
|
42
|
+
if (options?.axe?.skip === true || process.argv.includes('--update-snapshots')) {
|
|
42
43
|
return;
|
|
43
44
|
}
|
|
44
45
|
test(`snapshot for ${route}`, async ({ page }, testInfo) => {
|
|
@@ -82,7 +83,7 @@ ROUTES.forEach((options, route) => {
|
|
|
82
83
|
{
|
|
83
84
|
outputDirPath: outputPath.replace(/\/[^/]+$/, ''),
|
|
84
85
|
outputDir: `axe-${themeName}`,
|
|
85
|
-
reportFileName: `${route.replace(
|
|
86
|
+
reportFileName: `${route.replace(/[/?]/g, '-')}.html`,
|
|
86
87
|
},
|
|
87
88
|
);
|
|
88
89
|
});
|
|
@@ -251,6 +251,7 @@ ROUTES.set('heading/basic', {
|
|
|
251
251
|
},
|
|
252
252
|
},
|
|
253
253
|
});
|
|
254
|
+
ROUTES.set('heading/secondary');
|
|
254
255
|
ROUTES.set('heading/paragraph', {
|
|
255
256
|
snapshot: {
|
|
256
257
|
skip: true,
|
|
@@ -739,6 +740,16 @@ ROUTES.set('tabs/basic', {
|
|
|
739
740
|
},
|
|
740
741
|
},
|
|
741
742
|
});
|
|
743
|
+
ROUTES.set('tabs/create-button', {
|
|
744
|
+
axe: {
|
|
745
|
+
skipFailures: true,
|
|
746
|
+
},
|
|
747
|
+
snapshot: {
|
|
748
|
+
zoom: {
|
|
749
|
+
skip: true,
|
|
750
|
+
},
|
|
751
|
+
},
|
|
752
|
+
});
|
|
742
753
|
ROUTES.set('tabs/icons-only', {
|
|
743
754
|
snapshot: {
|
|
744
755
|
viewportSize: {
|