test: update expected test output for 'deno test' (#13882)

This commit is contained in:
Bartek Iwańczuk 2022-03-09 14:48:20 +01:00 committed by Yoshiya Hinosawa
parent d22a25245b
commit d0de700e00
No known key found for this signature in database
GPG Key ID: 0E8BFAA8A5B4E92B
4 changed files with 30 additions and 10 deletions

View File

@ -1,7 +1,17 @@
Check [WILDCARD]/no_prompt_by_default.ts
running 1 test from [WILDCARD]/no_prompt_by_default.ts
test no prompt ...
test result: FAILED. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out ([WILDCARD])
test no prompt ... FAILED ([WILDCARD]ms)
error: Uncaught (in promise) PermissionDenied: Requires read access to "./some_file.txt", run again with the --allow-read flag
failures:
no prompt
PermissionDenied: Requires read access to "./some_file.txt", run again with the --allow-read flag
[WILDCARD]
failures:
no prompt
test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out ([WILDCARD]ms)
error: Test failed

View File

@ -1,3 +1,3 @@
Deno.test("no prompt", () => {
Deno.readTextFile("./some_file.txt");
Deno.test("no prompt", async () => {
await Deno.readTextFile("./some_file.txt");
});

View File

@ -1,7 +1,17 @@
Check [WILDCARD]/no_prompt_with_denied_perms.ts
running 1 test from [WILDCARD]/no_prompt_with_denied_perms.ts
test no prompt ...
test result: FAILED. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out ([WILDCARD])
test no prompt ... FAILED ([WILDCARD]ms)
error: Uncaught (in promise) PermissionDenied: Requires read access to "./some_file.txt", run again with the --allow-read flag
failures:
no prompt
PermissionDenied: Requires read access to "./some_file.txt", run again with the --allow-read flag
[WILDCARD]
failures:
no prompt
test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out ([WILDCARD]ms)
error: Test failed

View File

@ -1,3 +1,3 @@
Deno.test("no prompt", { permissions: { read: false } }, () => {
Deno.readTextFile("./some_file.txt");
Deno.test("no prompt", { permissions: { read: false } }, async () => {
await Deno.readTextFile("./some_file.txt");
});