Skip to content

Commit 4f709b1

Browse files
committed
fix: vitest pool config and coverage
1 parent 3183aa3 commit 4f709b1

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

vitest.config.ts

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
import { defineConfig } from "vitest/config";
22

33
export default defineConfig({
4+
poolOptions: {
5+
threads: { singleThread: true },
6+
forks: { singleFork: true },
7+
},
48
test: {
59
environment: "clarinet",
610
pool: "forks",
7-
poolOptions: {
8-
threads: { singleThread: true },
9-
forks: { singleFork: true },
10-
},
1111
setupFiles: [
1212
"node_modules/@stacks/clarinet-sdk/vitest-helpers/src/vitest.setup.ts",
1313
],
14+
coverage: {
15+
enabled: false,
16+
},
1417
},
1518
});

0 commit comments

Comments
 (0)