Skip to content

Commit 6d8afee

Browse files
chore: disable vitest timeouts when debugging in VS Code
1 parent ed0b56d commit 6d8afee

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.vscode/launch.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
"program": "${workspaceRoot}/node_modules/.bin/vitest",
1717
"args": [
1818
"--run",
19+
"--testTimeout", "0",
20+
"--hookTimeout", "0",
1921
],
2022
"outputCapture": "std",
2123
"preLaunchTask": "make: compile",
@@ -34,6 +36,8 @@
3436
],
3537
"program": "${workspaceRoot}/node_modules/.bin/vitest",
3638
"args": [
39+
"--testTimeout", "0",
40+
"--hookTimeout", "0",
3741
"run",
3842
"${relativeFile}"
3943
],

0 commit comments

Comments
 (0)