// This is specific to "mix espec --focus". This should probably be its own (not
// default) task. Probably need completely different task for "mix test"? Or
// define both and change the default?
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Run tests",
"type": "shell",
"command": "mix",
"args": [
"espec",
"--focus"
],
"group": {
"kind": "test",
"isDefault": true
},
"presentation": {
"reveal": "always",
"panel": "new"
}
}
]
}