mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
d4ad2b809c
This commit changes test report output to repeat test name before printing result, but only if there's user output, denoted by markers.
13 lines
375 B
TypeScript
13 lines
375 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", () => {});
|
|
Deno.test("test 9", () => {
|
|
console.log("console.log");
|
|
console.error("console.error");
|
|
});
|