summaryrefslogtreecommitdiff
path: root/std/fs/copy_test.ts
diff options
context:
space:
mode:
authorCasper Beyer <caspervonb@pm.me>2020-09-01 22:03:07 +0800
committerGitHub <noreply@github.com>2020-09-01 10:03:07 -0400
commit87e513ffc5d9c14ac4af6a893b9e862c55108bea (patch)
treeaf8c84de948890e7c55b13ab53bd7a03c08a75ca /std/fs/copy_test.ts
parent644190eed862c2224630dd68404a5fd6e2e30440 (diff)
fix: use millisecond precision for Deno.futime and Deno.utime (#7299)
Diffstat (limited to 'std/fs/copy_test.ts')
-rw-r--r--std/fs/copy_test.ts10
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");