mirror of
https://github.com/agersant/polaris
synced 2024-11-10 10:14:12 +00:00
25 lines
No EOL
499 B
JSON
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"]
|
|
}
|
|
|
|
]
|
|
} |