From 79d14a3ceb34b3b6406da6fe744aec00d284d065 Mon Sep 17 00:00:00 2001 From: Gabriel Silva Date: Sat, 30 Jul 2022 00:18:18 -0300 Subject: [PATCH] chore(log): ignore missing await in console test --- log/handlers/console_test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/log/handlers/console_test.ts b/log/handlers/console_test.ts index 6c150df..d329e20 100644 --- a/log/handlers/console_test.ts +++ b/log/handlers/console_test.ts @@ -9,6 +9,7 @@ const { assertEquals, assertStringIncludes } = asserts; class TestWriter implements Deno.Writer { public buffer: Uint8Array = new Uint8Array(); + // deno-lint-ignore require-await async write(data: Uint8Array): Promise { this.buffer = data; return data.buffer.byteLength;