From f3ffa675536b57951451b3d746358904643cd031 Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Sat, 23 Nov 2024 08:45:14 -0800 Subject: [PATCH] fix e2e ui testing --- tests/proxy_admin_ui_tests/playwright.config.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/proxy_admin_ui_tests/playwright.config.ts b/tests/proxy_admin_ui_tests/playwright.config.ts index ba15d5458..3be77a319 100644 --- a/tests/proxy_admin_ui_tests/playwright.config.ts +++ b/tests/proxy_admin_ui_tests/playwright.config.ts @@ -13,7 +13,8 @@ import { defineConfig, devices } from '@playwright/test'; */ export default defineConfig({ testDir: './e2e_ui_tests', - testIgnore: '**/tests/pass_through_tests/**', + testIgnore: ['**/tests/pass_through_tests/**', '../pass_through_tests/**/*'], + testMatch: '**/*.spec.ts', // Only run files ending in .spec.ts /* Run tests in files in parallel */ fullyParallel: true, /* Fail the build on CI if you accidentally left test.only in the source code. */