Skip to content

Commit

Permalink
tools: add VS Code launch config
Browse files Browse the repository at this point in the history
  • Loading branch information
blaugold committed Jun 26, 2021
1 parent 5617ae3 commit 3102aa0
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "test",
"request": "launch",
"type": "dart",
"program": "test"
},
{
"name": "Expectations",
"request": "launch",
"codeLens": {
"for": ["run-test-file"]
},
"env": {
"UPDATE_RECORDED_EXPECTATIONS": "true"
},
"type": "dart",
"program": "test"
},
{
"name": "example",
"cwd": "example",
"request": "launch",
"type": "dart",
"args": ["../test-unsplash-credentials.json"]
}
]
}

0 comments on commit 3102aa0

Please # to comment.