-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add vscode e2e config (#13851)
- Loading branch information
1 parent
78886bc
commit fc21215
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
] | ||
} |