0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/cli/tests/testdata/test/ops_sanitizer_missing_details.ts
2022-03-23 00:24:45 +01:00

10 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);
});