summaryrefslogtreecommitdiff
path: root/tests/specs/test/quiet/main.ts
blob: f40805bfbd627f3302f6d1da1315fa3d9cc46399 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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");
});