Skip to content

Commit

Permalink
chore: disable typecheck on bench
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Jul 8, 2024
1 parent 6642fea commit a3c9c6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vitest.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { defineConfig } from "vitest/config";

export default defineConfig({
test: {
typecheck: { enabled: true },
typecheck: { enabled: !process.argv.includes("bench") },
coverage: {
include: ["src/**/*.ts"],
},
Expand Down

0 comments on commit a3c9c6d

Please sign in to comment.