diff options
Diffstat (limited to 'std/textproto/reader_test.ts')
-rw-r--r-- | std/textproto/reader_test.ts | 16 |
1 files changed, 9 insertions, 7 deletions
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<void> { -// 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<void> { + 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<void> { const r = reader(""); |