2024-01-01 21:11:32 +00:00
|
|
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2023-09-13 08:21:52 +00:00
|
|
|
|
refactor(assert,async,bytes,cli,collections,crypto,csv,data-structures,datetime,dotenv,encoding,expect,fmt,front-matter,fs,html,http,ini,internal,io,json,jsonc,log,media-types,msgpack,net,path,semver,streams,testing,text,toml,ulid,url,uuid,webgpu,yaml): import from `@std/assert` (#5199)
* refactor: import from `@std/assert`
* update
2024-06-30 08:30:10 +00:00
|
|
|
import { assertEquals } from "@std/assert";
|
2023-09-13 08:21:52 +00:00
|
|
|
import { toText } from "./to_text.ts";
|
|
|
|
|
2024-02-27 20:12:47 +00:00
|
|
|
Deno.test("toText()", async () => {
|
2024-07-23 03:23:35 +00:00
|
|
|
const strings = ["hello", " js ", "fans", " 中文♥"];
|
|
|
|
const expected = "hello js fans 中文♥";
|
2023-09-13 08:21:52 +00:00
|
|
|
|
2024-07-23 03:23:35 +00:00
|
|
|
const byteStream = ReadableStream.from(strings)
|
|
|
|
.pipeThrough(new TextEncoderStream());
|
|
|
|
assertEquals(await toText(byteStream), expected);
|
2024-07-10 10:52:35 +00:00
|
|
|
|
2024-07-23 03:23:35 +00:00
|
|
|
const stringStream = ReadableStream.from(strings);
|
|
|
|
assertEquals(await toText(stringStream), expected);
|
2023-09-13 08:21:52 +00:00
|
|
|
});
|