mirror of
https://github.com/denoland/deno.git
synced 2025-03-05 10:26:44 -05:00

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