Skip to content

Commit

Permalink
feat: add vscode e2e config (#13851)
Browse files Browse the repository at this point in the history
  • Loading branch information
julienrbrt authored Nov 14, 2022
1 parent 78886bc commit fc21215
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -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"
}
]
}

0 comments on commit fc21215

Please sign in to comment.