mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
11 lines
434 B
TypeScript
11 lines
434 B
TypeScript
|
// https://github.com/denoland/deno/issues/13729
|
||
|
// https://github.com/denoland/deno/issues/13938
|
||
|
import { writeAll } from "../../../../test_util/std/io/util.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);
|
||
|
});
|