1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-25 15:29:32 -05:00
denoland-deno/tests/testdata/test/sanitizer/exit_sanitizer.out
Matt Mastracci c92717a1a4
chore(cli): pre-factor the sanitizer tests (#22436)
Moving tests around so that we can make #22413 smaller
2024-02-16 10:49:42 -07:00

38 lines
1,006 B
Text

Check [WILDCARD]/exit_sanitizer.ts
running 3 tests from [WILDCARD]/exit_sanitizer.ts
exit(0) ... FAILED ([WILDCARD])
exit(1) ... FAILED ([WILDCARD])
exit(2) ... FAILED ([WILDCARD])
ERRORS
exit(0) => [WILDCARD]/exit_sanitizer.ts:[WILDCARD]
error: Error: Test case attempted to exit with exit code: 0
Deno.exit(0);
^
at [WILDCARD]
at [WILDCARD]/exit_sanitizer.ts:2:8
exit(1) => [WILDCARD]/exit_sanitizer.ts:[WILDCARD]
error: Error: Test case attempted to exit with exit code: 1
Deno.exit(1);
^
at [WILDCARD]
at [WILDCARD]/exit_sanitizer.ts:6:8
exit(2) => [WILDCARD]/exit_sanitizer.ts:[WILDCARD]
error: Error: Test case attempted to exit with exit code: 2
Deno.exit(2);
^
at [WILDCARD]
at [WILDCARD]/exit_sanitizer.ts:10:8
FAILURES
exit(0) => [WILDCARD]/exit_sanitizer.ts:[WILDCARD]
exit(1) => [WILDCARD]/exit_sanitizer.ts:[WILDCARD]
exit(2) => [WILDCARD]/exit_sanitizer.ts:[WILDCARD]
FAILED | 0 passed | 3 failed ([WILDCARD])
error: Test failed