mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
16 lines
275 B
TypeScript
16 lines
275 B
TypeScript
|
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");
|
||
|
});
|