diff options
Diffstat (limited to 'std/fs/copy_test.ts')
-rw-r--r-- | std/fs/copy_test.ts | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/std/fs/copy_test.ts b/std/fs/copy_test.ts index 75efd7cc0..d21524505 100644 --- a/std/fs/copy_test.ts +++ b/std/fs/copy_test.ts @@ -32,13 +32,6 @@ function testCopy( }); } -function testCopyIgnore( - name: string, - cb: (tempDir: string) => Promise<void>, -): void { - testCopy(name, cb, true); -} - function testCopySync(name: string, cb: (tempDir: string) => void): void { Deno.test({ name, @@ -144,8 +137,7 @@ testCopy( }, ); -// TODO(#6644) This case is ignored because of the issue #5065. -testCopyIgnore( +testCopy( "[fs] copy with preserve timestamps", async (tempDir: string): Promise<void> => { const srcFile = path.join(testdataDir, "copy_file.txt"); |