mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
e0b9c745c1
This PR is part of #22907 --------- Signed-off-by: HasanAlrimawi <141642411+HasanAlrimawi@users.noreply.github.com> Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
37 lines
777 B
TypeScript
37 lines
777 B
TypeScript
Deno.test("test 0", () => {});
|
|
Deno.test("test 1", () => {});
|
|
Deno.test("test 2", () => {});
|
|
Deno.test("test 3", () => {});
|
|
Deno.test("test 4", () => {});
|
|
Deno.test("test 5", () => {});
|
|
Deno.test("test 6", () => {});
|
|
Deno.test("test 7", () => {});
|
|
Deno.test("test 8", () => {
|
|
console.log("console.log");
|
|
});
|
|
Deno.test("test 9", () => {
|
|
console.error("console.error");
|
|
});
|
|
|
|
Deno.test("test\b", () => {
|
|
console.error("console.error");
|
|
});
|
|
Deno.test("test\f", () => {
|
|
console.error("console.error");
|
|
});
|
|
|
|
Deno.test("test\t", () => {
|
|
console.error("console.error");
|
|
});
|
|
|
|
Deno.test("test\n", () => {
|
|
console.error("console.error");
|
|
});
|
|
|
|
Deno.test("test\r", () => {
|
|
console.error("console.error");
|
|
});
|
|
|
|
Deno.test("test\v", () => {
|
|
console.error("console.error");
|
|
});
|