feat: add vscode e2e config (#13851)

This commit is contained in:
Julien Robert 2022-11-14 11:26:28 +01:00 committed by GitHub
parent 78886bc8de
commit fc21215803
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

16
.vscode/launch.json vendored Normal file
View File

@ -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"
}
]
}