From 851fd039dae1791b64cd868ed8e057b6b6bcdd51 Mon Sep 17 00:00:00 2001 From: Ashcon Partovi Date: Tue, 14 Mar 2023 16:37:32 -0700 Subject: Ignore irrelevant tests in encoding.test.ts --- test/js/deno/encoding/encoding.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/js/deno/encoding/encoding.test.ts') diff --git a/test/js/deno/encoding/encoding.test.ts b/test/js/deno/encoding/encoding.test.ts index 18700eddb..cffe93c5d 100644 --- a/test/js/deno/encoding/encoding.test.ts +++ b/test/js/deno/encoding/encoding.test.ts @@ -93,7 +93,7 @@ Deno.test(function textDecoderASCII() { const decoder = new TextDecoder("ascii"); assertEquals(decoder.decode(fixture), "‰•Ÿ¿"); }); -Deno.test(function textDecoderErrorEncoding() { +Deno.test.ignore(function textDecoderErrorEncoding() { let didThrow = false; try { new TextDecoder("Foo"); @@ -300,7 +300,7 @@ Deno.test(function textEncoderShouldCoerceToString() { const decoded = decoder.decode(bytes); assertEquals(decoded, fixutreText); }); -Deno.test(function binaryEncode() { +Deno.test.ignore(function binaryEncode() { const ops = Deno[Deno.internal].core.ops; function asBinaryString(bytes: Uint8Array): string { return Array.from(bytes).map((v: number)=>String.fromCodePoint(v)).join(""); -- cgit v1.2.3