1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-07 22:58:24 -05:00
denoland-deno/cli/tests/testdata/test/no_prompt_by_default.ts
Bartek Iwańczuk 43618e340e
fix(test): use --no-prompt by default (#13777)
This commit changes "deno test" subcommand, to
always never prompt for permissions (ie. as if "deno test"
was run with "--no-prompt" flag).
2022-03-03 20:26:13 +05:30

3 lines
75 B
TypeScript

Deno.test("no prompt", () => {
Deno.readTextFile("./some_file.txt");
});