diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..bc0ce56 --- /dev/null +++ b/.vscode/launch.json @@ -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"] + } + ] +}