github.com/redhat-appstudio/e2e-tests@v0.0.0-20230619105049-9a422b2094d7/.vscode/launch.json (about) 1 { 2 // Use IntelliSense to learn about possible attributes. 3 // Hover to view descriptions of existing attributes. 4 // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 5 "version": "0.2.0", 6 "configurations": [ 7 { 8 "name": "Launch demo suites", 9 "type": "go", 10 "request": "launch", 11 "mode": "test", 12 "program": "${workspaceFolder}/cmd/e2e_test.go", 13 "args": [ 14 "--ginkgo.focus=e2e-demos-suite", 15 "--ginkgo.junit-report=report.xml" 16 ], 17 "cwd": "${workspaceFolder}", 18 "env": { 19 "GITHUB_TOKEN": "${input:ghToken}" 20 } 21 } 22 ], 23 "inputs": [ 24 { 25 "id": "ghToken", 26 "type": "promptString", 27 "description": "Github token", 28 "password": true 29 } 30 ] 31 }