deno.land / std@0.224.0 / streams / zip_readable_streams_test.ts

zip_readable_streams_test.ts
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { assertEquals } from "../assert/mod.ts";import { zipReadableStreams } from "./zip_readable_streams.ts";
Deno.test("zipReadableStreams()", async () => { const textStream = ReadableStream.from([ "qwertzuiopasd", "mnbvcxylkjhgfds", "apoiuztrewq0987321", ]);
const textStream2 = ReadableStream.from([ "mnbvcxylkjhgfdsewr", "apoiuztrewq0987654321", "qwertzuiopasq123d", ]);
const buf = await Array.fromAsync( zipReadableStreams(textStream, textStream2), );
assertEquals(buf, [ "qwertzuiopasd", "mnbvcxylkjhgfdsewr", "mnbvcxylkjhgfds", "apoiuztrewq0987654321", "apoiuztrewq0987321", "qwertzuiopasq123d", ]);});
std

Version Info

Tagged at
3 weeks ago