mirror of
https://github.com/denoland/deno.git
synced 2025-02-01 20:25:12 -05:00
test(cli/unit): remove rogue console.log statement (#6846)
This commit is contained in:
parent
f8695b493d
commit
587eefe773
1 changed files with 0 additions and 1 deletions
|
@ -21,7 +21,6 @@ unitTest({ perms: { read: true } }, async function filesCopyToStdout(): Promise<
|
||||||
const bytesWritten = await Deno.copy(file, Deno.stdout);
|
const bytesWritten = await Deno.copy(file, Deno.stdout);
|
||||||
const fileSize = Deno.statSync(filename).size;
|
const fileSize = Deno.statSync(filename).size;
|
||||||
assertEquals(bytesWritten, fileSize);
|
assertEquals(bytesWritten, fileSize);
|
||||||
console.log("bytes written", bytesWritten);
|
|
||||||
file.close();
|
file.close();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue