feat: add vscode e2e config (#13851)
This commit is contained in:
parent
78886bc8de
commit
fc21215803
16
.vscode/launch.json
vendored
Normal file
16
.vscode/launch.json
vendored
Normal 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"
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user