From 243dad1459f5f992b1f71234b19eebc1ea8c9838 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gergely=20Cs=C3=A9csey?= Date: Thu, 19 Feb 2026 16:07:31 +0000 Subject: [PATCH 1/2] Fix broken import in metrics Playwright config The monorepo restructure moved metrics/ to tools/metrics/ but did not update the relative import path. Update ../playwright.config to ../../playwright.config to point to the correct location at the repo root. --- tools/metrics/playwright.metrics.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/metrics/playwright.metrics.config.ts b/tools/metrics/playwright.metrics.config.ts index b644d63d87..408d6d4e3f 100644 --- a/tools/metrics/playwright.metrics.config.ts +++ b/tools/metrics/playwright.metrics.config.ts @@ -1,6 +1,6 @@ import path from 'path'; import { defineConfig } from '@playwright/test'; -import baseConfig from '../playwright.config'; +import baseConfig from '../../playwright.config'; process.env.ARTIFACTS_PATH ??= path.join( __dirname, 'artifacts' ); From b2422a61507b66008ffe9536f6a83ca32e4d16af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gergely=20Cs=C3=A9csey?= Date: Thu, 19 Feb 2026 16:39:11 +0000 Subject: [PATCH 2/2] trigger e2e