67 lines
1.5 KiB
JSON
67 lines
1.5 KiB
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [{
|
|
"label": "mix test",
|
|
"type": "shell",
|
|
"command": "mix",
|
|
"args": [
|
|
"test",
|
|
"--exclude",
|
|
"integration",
|
|
"--exclude",
|
|
"feature",
|
|
"--color"
|
|
],
|
|
"options": {
|
|
"cwd": "${workspaceRoot}",
|
|
"requireFiles": [
|
|
"test/**/test_helper.exs",
|
|
"test/**/*_test.exs"
|
|
]
|
|
},
|
|
"problemMatcher": "$mixTestFailure"
|
|
},
|
|
{
|
|
"label": "mix test file",
|
|
"type": "shell",
|
|
"command": "mix",
|
|
"args": [
|
|
"test",
|
|
"${relativeFile}",
|
|
"--color",
|
|
"--trace"
|
|
],
|
|
"options": {
|
|
"cwd": "${workspaceRoot}",
|
|
"requireFiles": [
|
|
"test/**/test_helper.exs",
|
|
"test/**/*_test.exs"
|
|
]
|
|
},
|
|
"problemMatcher": "$mixTestFailure"
|
|
},
|
|
{
|
|
"label": "mix test focused",
|
|
"type": "shell",
|
|
"command": "mix",
|
|
"args": [
|
|
"test",
|
|
"${relativeFile}:${lineNumber}",
|
|
"--color",
|
|
"--trace"
|
|
],
|
|
"options": {
|
|
"cwd": "${workspaceRoot}",
|
|
"requireFiles": [
|
|
"test/**/test_helper.exs",
|
|
"test/**/*_test.exs"
|
|
]
|
|
},
|
|
"problemMatcher": "$mixTestFailure",
|
|
"group": {
|
|
"kind": "test",
|
|
"isDefault": true
|
|
}
|
|
}
|
|
]
|
|
} |