diff options
-rw-r--r-- | tests/unit_node/zlib_test.ts | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/unit_node/zlib_test.ts b/tests/unit_node/zlib_test.ts index fa09bd687..9122997fe 100644 --- a/tests/unit_node/zlib_test.ts +++ b/tests/unit_node/zlib_test.ts @@ -43,7 +43,9 @@ Deno.test("gzip compression sync", { sanitizeResources: false }, () => { assertEquals(decompressed.toString(), "hello world"); }); -Deno.test("brotli compression", async () => { +Deno.test("brotli compression", { + ignore: true, +}, async () => { const promise = Promise.withResolvers<void>(); const compress = createBrotliCompress(); const filePath = relative( @@ -70,7 +72,7 @@ Deno.test("brotli compression", async () => { ]); const content = Deno.readTextFileSync("lorem_ipsum.txt"); - assert(content.startsWith("Lorem ipsum dolor sit amet")); + assert(content.startsWith("Lorem ipsum dolor sit amet"), content); try { Deno.removeSync("lorem_ipsum.txt.br"); } catch { |