mirror of
https://github.com/denoland/std.git
synced 2024-11-21 20:50:22 +00:00
d102a10235
* refactor: import from `@std/assert` * update
16 lines
477 B
TypeScript
16 lines
477 B
TypeScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
import { assertEquals } from "@std/assert";
|
|
import { toArrayBuffer } from "./to_array_buffer.ts";
|
|
|
|
Deno.test("toArrayBuffer()", async () => {
|
|
const stream = ReadableStream.from([
|
|
new Uint8Array([1, 2, 3, 4, 5]),
|
|
new Uint8Array([6, 7]),
|
|
new Uint8Array([8, 9]),
|
|
]);
|
|
|
|
const buf = await toArrayBuffer(stream);
|
|
assertEquals(buf, new Uint8Array([1, 2, 3, 4, 5, 6, 7, 8, 9]).buffer);
|
|
});
|