0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-01 12:16:11 -05:00

fixed error

This commit is contained in:
张瑞 2024-11-26 00:14:02 +08:00
parent d3e4150c88
commit e41fbf09f7

View file

@ -110,7 +110,6 @@ Deno.test("[node/fs filehandle.writeFile] Write to file", async function () {
const str = "hello world";
await fileHandle.writeFile(str);
await fileHandle.sync();
const data = Deno.readFileSync(tempFile);
await Deno.remove(tempFile);