Skip to content

Commit

Permalink
fix: vitest config
Browse files Browse the repository at this point in the history
  • Loading branch information
ilteoood committed Jun 21, 2024
1 parent 9311310 commit faa6294
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion vitest-browser.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { defineConfig } from 'vitest/config'

export default defineConfig({
test: {
environment: 'edge-runtime'
environment: 'edge-runtime',
include: ['test/**/*.test.ts']
},
})
3 changes: 2 additions & 1 deletion vitest-edge.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { defineConfig } from 'vitest/config'

export default defineConfig({
test: {
environment: 'edge-runtime'
environment: 'edge-runtime',
include: ['test/**/*.test.ts']
},
})
1 change: 1 addition & 0 deletions vitest-node.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@ import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
pool: 'forks',
include: ['test/**/*.test.ts']
},
})

0 comments on commit faa6294

Please sign in to comment.