Skip to content

Commit 62f87b2

Browse files
authored
chore(e2e): add new test project to Playwright config for flexibility (#2430)
* Add new test project to Playwright config for flexibility Added a new test project named "any-test" in the Playwright configuration. This allows running any test file matching the "*.spec.ts" pattern, improving test execution flexibility. No existing configurations were altered. Signed-off-by: Gustavo Lira <[email protected]> * Fix trailing comma issue in Playwright config. Signed-off-by: Gustavo Lira <[email protected]> --------- Signed-off-by: Gustavo Lira <[email protected]>
1 parent 5181471 commit 62f87b2

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

e2e-tests/playwright.config.ts

+4
Original file line numberDiff line numberDiff line change
@@ -164,5 +164,9 @@ export default defineConfig({
164164
"**/playwright/e2e/instance-health-check.spec.ts",
165165
],
166166
},
167+
{
168+
name: "any-test",
169+
testMatch: "**/*.spec.ts", // Allows running any test file
170+
},
167171
],
168172
});

0 commit comments

Comments
 (0)