From 6471d4cfabf27c0f5e7b340568aa88712d270541 Mon Sep 17 00:00:00 2001 From: Nayeem Rahman Date: Sun, 15 Mar 2020 12:03:25 +0000 Subject: refactor(std): Uncomment disabled tests, use skip option (#4378) --- std/textproto/reader_test.ts | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'std/textproto') diff --git a/std/textproto/reader_test.ts b/std/textproto/reader_test.ts index 9eb822ecb..2ceeb7eef 100644 --- a/std/textproto/reader_test.ts +++ b/std/textproto/reader_test.ts @@ -17,13 +17,15 @@ const { test } = Deno; function reader(s: string): TextProtoReader { return new TextProtoReader(new BufReader(stringsReader(s))); } -// test({ -// name: "[textproto] Reader : DotBytes", -// async fn(): Promise { -// const input = -// "dotlines\r\n.foo\r\n..bar\n...baz\nquux\r\n\r\n.\r\nanot.her\r\n"; -// } -// }); + +test({ + skip: true, + name: "[textproto] Reader : DotBytes", + async fn(): Promise { + const _input = + "dotlines\r\n.foo\r\n..bar\n...baz\nquux\r\n\r\n.\r\nanot.her\r\n"; + } +}); test(async function textprotoReadEmpty(): Promise { const r = reader(""); -- cgit v1.2.3