2021-06-27 09:59:17 -05:00
|
|
|
{
|
|
|
|
"version": "2.0.0",
|
|
|
|
"tasks": [
|
|
|
|
{
|
|
|
|
"label": "cargo check",
|
|
|
|
"type": "shell",
|
|
|
|
"command": "cargo check",
|
|
|
|
"problemMatcher": [],
|
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
2022-07-03 09:44:09 -05:00
|
|
|
"isDefault": true
|
|
|
|
}
|
2021-06-27 09:59:17 -05:00
|
|
|
},
|
|
|
|
{
|
2021-06-28 13:40:09 -05:00
|
|
|
"label": "cargo dev fmt",
|
2021-06-27 09:59:17 -05:00
|
|
|
"type": "shell",
|
|
|
|
"command": "cargo dev fmt",
|
|
|
|
"problemMatcher": [],
|
2022-07-03 09:44:09 -05:00
|
|
|
"group": "none"
|
2021-06-27 09:59:17 -05: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 13:31:57 -05:00
|
|
|
// See: https://github.com/rust-lang/rust-clippy/blob/master/book/src/development/adding_lints.md#testing
|
2021-06-27 09:59:17 -05:00
|
|
|
//
|
|
|
|
// "TESTNAME": "<TODO>",
|
2022-07-03 14:03:51 -05:00
|
|
|
"RUST_BACKTRACE": "1"
|
2022-07-03 09:44:09 -05:00
|
|
|
}
|
2021-06-27 09:59:17 -05:00
|
|
|
},
|
|
|
|
"problemMatcher": [],
|
|
|
|
"group": {
|
|
|
|
"kind": "test",
|
2022-07-03 09:44:09 -05:00
|
|
|
"isDefault": true
|
2021-06-27 09:59:17 -05:00
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "cargo test",
|
|
|
|
"type": "shell",
|
|
|
|
"command": "cargo test",
|
|
|
|
"problemMatcher": [],
|
2022-07-03 09:44:09 -05:00
|
|
|
"group": "test"
|
2021-06-27 09:59:17 -05:00
|
|
|
},
|
|
|
|
{
|
2023-02-28 10:12:10 -06:00
|
|
|
"label": "bless ui tests",
|
2021-06-27 09:59:17 -05:00
|
|
|
"type": "shell",
|
2023-02-28 10:12:10 -06:00
|
|
|
"command": "cargo bless",
|
2021-06-27 09:59:17 -05:00
|
|
|
"problemMatcher": [],
|
2022-07-03 09:44:09 -05:00
|
|
|
"group": "none"
|
|
|
|
}
|
|
|
|
]
|
2021-06-27 09:59:17 -05:00
|
|
|
}
|