Skip to content
This repository has been archived by the owner on Jul 16, 2024. It is now read-only.

Commit

Permalink
run tests concurrently by default
Browse files Browse the repository at this point in the history
  • Loading branch information
fubhy committed Dec 15, 2023
1 parent 6dc863e commit 42baed0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ import { defineConfig } from "vitest/config"

export default defineConfig({
test: {
include: ["./test/**/*.test.{js,mjs,cjs,ts,mts,cts,jsx,tsx}"]
include: ["./test/**/*.test.{js,mjs,cjs,ts,mts,cts,jsx,tsx}"],
sequence: {
concurrent: true
}
},
resolve: {
alias: {
Expand Down

0 comments on commit 42baed0

Please sign in to comment.