out-of-your-element/.vscode/tasks.json

24 lines
449 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "test",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [],
"label": "npm: test",
"detail": "cross-env FORCE_COLOR=true supertape --format tap test/test.js | tap-dot",
"presentation": {
"echo": false,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": false,
"clear": true
}
}
]
}