1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/cli/tests/testdata/test/pass.ts
Bartek Iwańczuk 04a259e2c8
fix(test): handle ASCII escape chars in test name (#20081)
Handles ASCCI espace chars in test and bench name making
test and bench reporting more reliable. This one is also tested
in the fixture of "node:test" module.
2023-08-10 01:40:34 +02:00

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");
});