blob: e3b07d77a218cff0d7670fa21d33aef0690fb2bf (
plain)
1
2
3
4
5
6
7
8
9
10
|
// https://github.com/denoland/deno/issues/13729
// https://github.com/denoland/deno/issues/13938
import { writeAll } from "../../../../test_util/std/streams/write_all.ts";
Deno.test("test 1", { permissions: { write: true, read: true } }, async () => {
const tmpFile = await Deno.makeTempFile();
const file = await Deno.open(tmpFile, { write: true });
const buf = new Uint8Array(new Array(1_000_000).fill(1));
writeAll(file, buf);
});
|