diff options
Diffstat (limited to 'cli/tests/test/quiet.ts')
-rw-r--r-- | cli/tests/test/quiet.ts | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/cli/tests/test/quiet.ts b/cli/tests/test/quiet.ts new file mode 100644 index 000000000..f40805bfb --- /dev/null +++ b/cli/tests/test/quiet.ts @@ -0,0 +1,15 @@ +Deno.test("console.log", function () { + console.log("log"); +}); + +Deno.test("console.error", function () { + console.error("error"); +}); + +Deno.test("console.info", function () { + console.info("info"); +}); + +Deno.test("console.warn", function () { + console.info("warn"); +}); |