review comment 2

This commit is contained in:
Luca Casonato 2024-06-08 20:20:39 +02:00
parent 94ce114d30
commit 498e6e9994
No known key found for this signature in database
GPG Key ID: 01A83EB62563811F

View File

@ -2,8 +2,7 @@ Deno.test("fail color", () => {
throw new Error(`RedMessage: \x1b[31mThis should be red text\x1b[39m`);
});
// deno-lint-ignore no-explicit-any
Deno.test("step fail color", async (t: any) => {
Deno.test("step fail color", async (t) => {
await t.step("step", () => {
throw new Error(`RedMessage: \x1b[31mThis should be red text\x1b[39m`);
});