mirror of
https://github.com/denoland/deno.git
synced 2024-11-25 15:29:32 -05:00
3e98ea4e69
Allows writing named sub-tests. These are: 1. Filterable on the command line via `cargo test ...` 2. Run in parallel 3. Use a fresh temp and deno dir for each test (unlike steps)
21 lines
550 B
Text
21 lines
550 B
Text
{
|
|
"tests": {
|
|
"ignore": {
|
|
"args": "bench --ignore=collect/ignore collect",
|
|
"output": "collect.out"
|
|
},
|
|
"config_sub_dir": {
|
|
"args": "bench --config collect/deno.jsonc collect",
|
|
"output": "collect.out"
|
|
},
|
|
"config_sub_dir_with_exclude": {
|
|
"args": "bench --config collect/deno2.jsonc collect",
|
|
"output": "collect2.out"
|
|
},
|
|
"config_malformed": {
|
|
"args": "bench --config collect/deno.malformed.jsonc",
|
|
"exitCode": 1,
|
|
"output": "collect_with_malformed_config.out"
|
|
}
|
|
}
|
|
}
|