Skip to content

Commit

Permalink
chore(playwright): rename performance test file to use .spec.ts exten…
Browse files Browse the repository at this point in the history
…sion

Updated the test ignore list to exclude `performance.spec.ts` instead
of `performance.test.ts`. This change aligns with the standard naming
convention for test files in the project.
  • Loading branch information
s00d committed Jan 20, 2025
1 parent 11f0978 commit e9e5e95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default defineConfig({
retries: 3,
workers: process.env.CI ? 2 : 3,
testIgnore: [
'test/performance.test.ts',
'test/performance.spec.ts',
],
projects: [
{
Expand Down

0 comments on commit e9e5e95

Please sign in to comment.