@iqual/playwright-vrt 0.4.0 → 0.4.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.
@@ -17,7 +17,7 @@ export default {
17
17
  testMatch: '**/*.spec.js', // JavaScript test files
18
18
  fullyParallel: true,
19
19
  retries: process.env.CI ? 2 : 1,
20
- workers: 3,
20
+ workers: 2,
21
21
  timeout: 60000,
22
22
 
23
23
  // Store snapshots in playwright-snapshots/ for easy caching
@@ -37,7 +37,7 @@ for (const url of urls) {
37
37
  const fullPath = pageUrl.pathname + pageUrl.search;
38
38
  await page.goto(fullPath, {
39
39
  waitUntil: 'networkidle',
40
- timeout: 30000
40
+ timeout: 60000
41
41
  });
42
42
 
43
43
  // Wait for fonts to load
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iqual/playwright-vrt",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "Standalone Visual Regression Testing CLI tool using Playwright",
5
5
  "type": "module",
6
6
  "repository": {