Skip to content

Commit

Permalink
Make playwright test regex more exact
Browse files Browse the repository at this point in the history
  • Loading branch information
surilindur committed Mar 25, 2024
1 parent b617f27 commit 0d1fa40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion playwright.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { defineConfig } from '@playwright/test';

export default defineConfig({
testMatch: 'test/*-spec.ts',
testMatch: /test\/?(.+)+browser\.[tj]s$/u,
reporter: process.env.CI ? 'github' : 'list',
preserveOutput: 'never',
webServer: {
Expand Down

0 comments on commit 0d1fa40

Please sign in to comment.