0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-23 05:33:33 -05:00
denoland-deno/tests/specs/bench/no_files/__test__.jsonc
Alvaro Parker 41fa8df197
feat(bench): add --permit-no-files (#27048)
This PR adds the `--permit-no-files` cli options to the `bench`
subcommand. This will cause `deno bench --permit-no-files` to not return
an error when no bench files where found.
2025-02-03 16:18:09 +00:00

14 lines
227 B
JSON

{
"tests": {
"error": {
"args": "bench",
"output": "error.out",
"exitCode": 1
},
"permit_no_files": {
"args": "bench --permit-no-files",
"output": "",
"exitCode": 0
}
}
}