From 16d20bde092b622a690e7a4bdea4b2c46b58fbaa Mon Sep 17 00:00:00 2001 From: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> Date: Sat, 19 Nov 2022 22:35:26 -0800 Subject: [PATCH] Set aggression level in tests --- .vscode/launch.json | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 722187bdfe..5d4b48c75a 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" },