@public-ui/visual-tests 2.1.7 → 2.1.8-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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@public-ui/visual-tests",
3
- "version": "2.1.7",
3
+ "version": "2.1.8-rc.0",
4
4
  "license": "EUPL-1.2",
5
5
  "homepage": "https://public-ui.github.io",
6
6
  "repository": {
@@ -22,19 +22,18 @@
22
22
  "kolibri-visual-test": "src/index.js"
23
23
  },
24
24
  "dependencies": {
25
- "@playwright/test": "1.45.3",
26
- "axe-playwright": "2.0.1",
25
+ "@playwright/test": "1.47.1",
26
+ "axe-playwright": "2.0.2",
27
27
  "portfinder": "1.0.32",
28
28
  "serve": "14.2.3",
29
- "@public-ui/sample-react": "2.1.7"
29
+ "@public-ui/sample-react": "2.1.8-rc.0"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@babel/eslint-parser": "7.25.1",
33
- "@babel/plugin-syntax-import-attributes": "7.24.7",
34
- "@babel/preset-env": "7.25.3",
35
- "eslint": "8.57.0",
36
- "eslint-plugin-no-loops": "0.4.0",
37
- "knip": "5.27.0",
33
+ "@babel/plugin-syntax-import-attributes": "7.25.6",
34
+ "@babel/preset-env": "7.25.4",
35
+ "eslint": "8.57.1",
36
+ "knip": "5.30.2",
38
37
  "prettier": "3.3.3"
39
38
  },
40
39
  "files": [
@@ -23,6 +23,8 @@ export default defineConfig({
23
23
  retries: process.env.CI ? 2 : 0,
24
24
  /* Opt out of parallel tests on CI. */
25
25
  workers: process.env.CI ? 1 : undefined,
26
+ /* Allow to override the expectation timeout for slow environments */
27
+ timeout: process.env.KOLIBRI_VISUAL_TESTS_TIMEOUT ? Number(process.env.KOLIBRI_VISUAL_TESTS_TIMEOUT) : undefined,
26
28
  /* Reporter to use. See https://playwright.dev/docs/test-reporters */
27
29
  reporter: 'line',
28
30
  /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */