2021-06-27 14:59:17 +00:00
|
|
|
{
|
|
|
|
"version": "2.0.0",
|
|
|
|
"tasks": [
|
|
|
|
{
|
|
|
|
"label": "cargo check",
|
|
|
|
"type": "shell",
|
|
|
|
"command": "cargo check",
|
|
|
|
"problemMatcher": [],
|
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
2022-07-03 14:44:09 +00:00
|
|
|
"isDefault": true
|
|
|
|
}
|
2021-06-27 14:59:17 +00:00
|
|
|
},
|
|
|
|
{
|
2021-06-28 18:40:09 +00:00
|
|
|
"label": "cargo dev fmt",
|
2021-06-27 14:59:17 +00:00
|
|
|
"type": "shell",
|
|
|
|
"command": "cargo dev fmt",
|
|
|
|
"problemMatcher": [],
|
2022-07-03 14:44:09 +00:00
|
|
|
"group": "none"
|
2021-06-27 14:59:17 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "cargo uitest",
|
|
|
|
"type": "shell",
|
|
|
|
"command": "cargo uitest",
|
|
|
|
"options": {
|
|
|
|
"env": {
|
|
|
|
// This task will usually execute all UI tests inside `tests/ui` you can
|
|
|
|
// optionally uncomment the line below and only run a specific test.
|
|
|
|
//
|
2022-07-01 18:31:57 +00:00
|
|
|
// See: https://github.com/rust-lang/rust-clippy/blob/master/book/src/development/adding_lints.md#testing
|
2021-06-27 14:59:17 +00:00
|
|
|
//
|
|
|
|
// "TESTNAME": "<TODO>",
|
2022-07-03 19:03:51 +00:00
|
|
|
"RUST_BACKTRACE": "1"
|
2022-07-03 14:44:09 +00:00
|
|
|
}
|
2021-06-27 14:59:17 +00:00
|
|
|
},
|
|
|
|
"problemMatcher": [],
|
|
|
|
"group": {
|
|
|
|
"kind": "test",
|
2022-07-03 14:44:09 +00:00
|
|
|
"isDefault": true
|
2021-06-27 14:59:17 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "cargo test",
|
|
|
|
"type": "shell",
|
|
|
|
"command": "cargo test",
|
|
|
|
"problemMatcher": [],
|
2022-07-03 14:44:09 +00:00
|
|
|
"group": "test"
|
2021-06-27 14:59:17 +00:00
|
|
|
},
|
|
|
|
{
|
2023-02-28 16:12:10 +00:00
|
|
|
"label": "bless ui tests",
|
2021-06-27 14:59:17 +00:00
|
|
|
"type": "shell",
|
2023-02-28 16:12:10 +00:00
|
|
|
"command": "cargo bless",
|
2021-06-27 14:59:17 +00:00
|
|
|
"problemMatcher": [],
|
2022-07-03 14:44:09 +00:00
|
|
|
"group": "none"
|
|
|
|
}
|
|
|
|
]
|
2021-06-27 14:59:17 +00:00
|
|
|
}
|