@samitouri / QOSami-HFS / commits / af1c8e1a

test: updated playwright

Massimo Melina committed May 26, 2026 at 17:34 UTC af1c8e1a1cc7d50904d2b657cb8399db64c4ad79
2 files changed +3 -3
package.json
+1 -1
@@ -112,7 +112,7 @@
112 "yazl": "^3.3.1"
113 },
114 "devDependencies": {
115 - "@playwright/test": "^1.55.1",
115 + "@playwright/test": "^1.60.0",
116 "@types/busboy": "^1.5.4",
117 "@types/koa": "^3.0.0",
118 "@types/koa-mount": "^4.0.5",
playwright.config.ts
+2 -2
@@ -33,8 +33,8 @@ export default defineConfig({
33 /* Base URL to use in actions like `await page.goto('/')`. */
34 // baseURL: 'http://127.0.0.1:3000',
35
36 - /* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
37 - trace: 'on-first-retry',
36 + /* Keep the failed attempt and the retry trace together so flake diffs are easier to compare. */
37 + trace: 'retain-on-failure-and-retries',
38 screenshot: 'only-on-failure',
39 timezoneId: 'Europe/Rome',
40 },