Last active
January 14, 2021 19:27
-
-
Save TsuyoshiUshio/205a20fbc9fe27693dbeabc906667833 to your computer and use it in GitHub Desktop.
Acceptance Testing Settings
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
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Launch Acceptance test", | |
"type": "go", | |
"request": "launch", | |
"mode": "test", | |
"program": "${workspaceRoot}/azuredevops/resource_project_test.go", | |
"args": [ | |
"-test.v", | |
"-test.run", | |
"TestAccAzureDevOpsProject_CreateAndUpdate" | |
], | |
"envFile": "${workspaceRoot}/.vscode/private.env", | |
"showLog": true | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment