Skip to content

Instantly share code, notes, and snippets.

@chaoslogick
Last active November 7, 2019 15:47
Show Gist options
  • Save chaoslogick/e9ccea91e737a420258157666a069754 to your computer and use it in GitHub Desktop.
Save chaoslogick/e9ccea91e737a420258157666a069754 to your computer and use it in GitHub Desktop.
VSCODE: Debug settings for Elixir
{
// 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": [
{
"type": "mix_task",
"name": "mix",
"request": "launch",
"projectDir": "${workspaceRoot}"
},
{
"type": "mix_task",
"name": "mix test",
"request": "launch",
"task": "test",
"taskArgs": [
"--trace"
],
"startApps": true,
"projectDir": "${workspaceRoot}",
"env": {},
"preLaunchTask": "",
"requireFiles": [
"test/**/test_helper.exs",
"test/**/*_test.exs"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment