polaris/.vscode/tasks.json

25 lines
499 B
JSON
Raw Normal View History

{
"version": "0.1.0",
"showOutput": "always",
"tasks": [
// Run test environment
{
"taskName": "Run",
"options": { "cwd": "${workspaceRoot}" },
"command": "cargo",
2017-06-26 02:27:46 +00:00
"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"]
}
]
}