Skip to content

Commit

Permalink
Add vitest config
Browse files Browse the repository at this point in the history
  • Loading branch information
colinhacks committed Jun 23, 2023
1 parent 6309322 commit c0aece1
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions vitest.config.ts
@@ -0,0 +1,12 @@
import { defineConfig } from "vitest/config";

export default defineConfig({
test: {
alias: {
"@jest/globals": "vitest",
},
include: ["**/*.test.ts"],
isolate: false,
watch: false,
},
});

0 comments on commit c0aece1

Please sign in to comment.