polaris/.vscode/tasks.json
2017-06-25 19:27:46 -07:00

25 lines
No EOL
499 B
JSON

{
"version": "0.1.0",
"showOutput": "always",
"tasks": [
// Run test environment
{
"taskName": "Run",
"options": { "cwd": "${workspaceRoot}" },
"command": "cargo",
"args": ["run", "--release", "--", "-c", "./TestConfigWindows.toml", "-d", "test/db.sqlite", "-w", "../polaris-web"]
},
// Run unit tests
{
"isTestCommand": true,
"taskName": "Test",
"options": { "cwd": "${workspaceRoot}" },
"command": "cargo",
"args": ["test"]
}
]
}