We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3183aa3 commit 4f709b1Copy full SHA for 4f709b1
1 file changed
vitest.config.ts
@@ -1,15 +1,18 @@
1
import { defineConfig } from "vitest/config";
2
3
export default defineConfig({
4
+ poolOptions: {
5
+ threads: { singleThread: true },
6
+ forks: { singleFork: true },
7
+ },
8
test: {
9
environment: "clarinet",
10
pool: "forks",
- poolOptions: {
- threads: { singleThread: true },
- forks: { singleFork: true },
- },
11
setupFiles: [
12
"node_modules/@stacks/clarinet-sdk/vitest-helpers/src/vitest.setup.ts",
13
],
14
+ coverage: {
15
+ enabled: false,
16
17
},
18
});
0 commit comments