From 6e06cc339660e0f75bdc3b3afe1f557d2788d5c9 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Wed, 22 Apr 2026 00:10:57 +0000 Subject: [PATCH] chore: update security test paths in Playwright configuration --- playwright.config.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/playwright.config.js b/playwright.config.js index aa82818d..63a22da3 100644 --- a/playwright.config.js +++ b/playwright.config.js @@ -240,7 +240,7 @@ export default defineConfig({ testDir: './tests', testMatch: [ /security-enforcement\/.*\.spec\.(ts|js)/, - /security\/.*\.spec\.(ts|js)/, + /^tests\/security\/.*\.spec\.(ts|js)/, ], dependencies: ['setup', 'security-shard-setup'], teardown: 'security-teardown', @@ -275,7 +275,7 @@ export default defineConfig({ '**/node_modules/**', '**/backend/**', '**/security-enforcement/**', - '**/security/**', + '**/tests/security/**', ], }, @@ -292,7 +292,7 @@ export default defineConfig({ '**/node_modules/**', '**/backend/**', '**/security-enforcement/**', - '**/security/**', + '**/tests/security/**', ], }, @@ -309,7 +309,7 @@ export default defineConfig({ '**/node_modules/**', '**/backend/**', '**/security-enforcement/**', - '**/security/**', + '**/tests/security/**', ], },