diff options
author | 2022-11-19 22:35:26 -0800 | |
---|---|---|
committer | 2022-11-19 22:35:26 -0800 | |
commit | 16d20bde092b622a690e7a4bdea4b2c46b58fbaa (patch) | |
tree | c3c062f70af5a89d859e32c06a45cc2658467651 | |
parent | bea44d948ec818408c609fffd4a516790ce57f55 (diff) | |
download | bun-16d20bde092b622a690e7a4bdea4b2c46b58fbaa.tar.gz bun-16d20bde092b622a690e7a4bdea4b2c46b58fbaa.tar.zst bun-16d20bde092b622a690e7a4bdea4b2c46b58fbaa.zip |
Set aggression level in tests
-rw-r--r-- | .vscode/launch.json | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index 722187bdf..5d4b48c75 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -7,9 +7,10 @@ "name": "bun test", "program": "bun-debug", "args": ["wiptest", "${file}"], - "cwd": "${workspaceFolder}/test", + "cwd": "${workspaceFolder}/test/bun.js", "env": { - "FORCE_COLOR": "1" + "FORCE_COLOR": "1", + "BUN_GARBAGE_COLLECTOR_LEVEL": "2" }, "console": "internalConsole" }, @@ -21,7 +22,8 @@ "args": ["wiptest"], "cwd": "${workspaceFolder}/test", "env": { - "FORCE_COLOR": "1" + "FORCE_COLOR": "1", + "BUN_GARBAGE_COLLECTOR_LEVEL": "2" }, "console": "internalConsole" }, |