1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-25 15:29:32 -05:00
denoland-deno/tests/specs/bench/collect/__test__.jsonc
David Sherret 3e98ea4e69
chore(tests/specs): ability to have sub tests in file (#23667)
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)
2024-05-03 10:19:42 +05:30

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"
}
}
}