Skip to content

Commit 3082aaa

Browse files
authored
Update vitest.workspace.ts
fix excluding browser test glob in node tests
1 parent 5091541 commit 3082aaa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

vitest.workspace.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default defineWorkspace([
77
name: "server tests",
88
environment: "node",
99
// Include generic .test files that should work anywhere and .server.test files for server only, ignore .browser.test
10-
include: ["./**/*.server.test.{ts,tsx}", "!./**.browser.test.{ts,tsx}", "./**/*.test.{ts,tsx}"],
10+
include: ["./**/*.server.test.{ts,tsx}", "!./**/*.browser.test.{ts,tsx}", "./**/*.test.{ts,tsx}"],
1111
},
1212
},
1313
{

0 commit comments

Comments
 (0)