Skip to content

Commit

Permalink
test: fix setup/teardown test filters
Browse files Browse the repository at this point in the history
  • Loading branch information
angeloashmore committed Dec 20, 2024
1 parent 69b9fee commit 0417881
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default defineConfig({
projects: [
{
name: "Setup",
testMatch: "*.setup.*",
testMatch: "setup.ts",
teardown: "Teardown",
use: {
storageState: STORAGE_STATE,
Expand All @@ -53,7 +53,7 @@ export default defineConfig({
},
{
name: "Teardown",
testMatch: "*.teardown.*",
testMatch: "teardown.ts",
use: {
storageState: STORAGE_STATE,
},
Expand Down

0 comments on commit 0417881

Please sign in to comment.