From 722f5c5035af67dfe654f618e40203acd09facc8 Mon Sep 17 00:00:00 2001 From: Andrew Eisenberg Date: Fri, 10 Feb 2023 15:55:16 -0800 Subject: [PATCH] Add some better sample env vars in settings.json --- .vscode/settings.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 984ccf8cc..96e94b570 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -44,10 +44,18 @@ }, "jestrunner.debugOptions": { // Uncomment to debug integration tests - // "attachSimplePort": 9223, + "attachSimplePort": 9223, "env": { "LANG": "en-US", "TZ": "UTC", + + // Uncomment to set a custom path to a CodeQL checkout. + // "TEST_CODEQL_PATH": "../codeql", + + // Uncomment to set a custom path to a CodeQL CLI executable. + // This is the CodeQL version that will be used in the tests. + // "CLI_PATH": "/path/to/customg/codeql", + // Uncomment to debug integration tests // "VSCODE_WAIT_FOR_DEBUGGER": "true", }