From 9bbbdd3d6e35483c00691118a1d0359358973031 Mon Sep 17 00:00:00 2001 From: Jack Westbrook Date: Mon, 13 Jan 2025 16:15:16 +0100 Subject: [PATCH] chore(playwright): fix up broken testDirs --- e2e/plugin-e2e/playwright.config.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/e2e/plugin-e2e/playwright.config.ts b/e2e/plugin-e2e/playwright.config.ts index b34eed48813..9e3ca9d65d5 100644 --- a/e2e/plugin-e2e/playwright.config.ts +++ b/e2e/plugin-e2e/playwright.config.ts @@ -115,7 +115,7 @@ export default defineConfig({ }, { name: 'azuremonitor', - testDir: path.join(testDirRoot, '/azuremonitor'), + testDir: 'e2e/test-plugins/azuremonitor', use: { ...devices['Desktop Chrome'], storageState: 'playwright/.auth/admin.json', @@ -124,7 +124,7 @@ export default defineConfig({ }, { name: 'cloudmonitoring', - testDir: path.join(testDirRoot, '/cloudmonitoring'), + testDir: 'e2e/test-plugins/cloudmonitoring', use: { ...devices['Desktop Chrome'], storageState: 'playwright/.auth/admin.json', @@ -133,7 +133,7 @@ export default defineConfig({ }, { name: 'graphite', - testDir: path.join(testDirRoot, '/graphite'), + testDir: 'e2e/test-plugins/graphite', use: { ...devices['Desktop Chrome'], storageState: 'playwright/.auth/admin.json', @@ -142,7 +142,7 @@ export default defineConfig({ }, { name: 'influxdb', - testDir: path.join(testDirRoot, '/influxdb'), + testDir: 'e2e/test-plugins/influxdb', use: { ...devices['Desktop Chrome'], storageState: 'playwright/.auth/admin.json', @@ -151,7 +151,7 @@ export default defineConfig({ }, { name: 'opentsdb', - testDir: path.join(testDirRoot, '/opentsdb'), + testDir: 'e2e/test-plugins/opentsdb', use: { ...devices['Desktop Chrome'], storageState: 'playwright/.auth/admin.json',