From fc212158035f6b96d27136afcd7a6bc1cf0a8a91 Mon Sep 17 00:00:00 2001 From: Julien Robert Date: Mon, 14 Nov 2022 11:26:28 +0100 Subject: [PATCH] feat: add vscode e2e config (#13851) --- .vscode/launch.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 000000000000..f334bdcedfce --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,16 @@ +{ + "version": "0.2.0", + "configurations": [ + { + // Run E2E tests from the current dir in VSCode + // For running all E2E tests use `make test-e2e` + "name": "E2E: (current dir)", + "type": "go", + "request": "launch", + "mode": "test", + "program": "${fileDirname}", + "args": ["-test.timeout", "30m", "-test.v"], + "buildFlags": "-tags e2e" + } + ] +}