summaryrefslogtreecommitdiff
path: root/cli/tests/unit/files_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/unit/files_test.ts')
-rw-r--r--cli/tests/unit/files_test.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/cli/tests/unit/files_test.ts b/cli/tests/unit/files_test.ts
index 1b6a99e8e..152068004 100644
--- a/cli/tests/unit/files_test.ts
+++ b/cli/tests/unit/files_test.ts
@@ -322,7 +322,7 @@ unitTest(
// deno-lint-ignore no-explicit-any
await file.write(null as any);
},
- ); // TODO: Check error kind when dispatch_minimal pipes errors properly
+ ); // TODO(bartlomieju): Check error kind when dispatch_minimal pipes errors properly
file.close();
await Deno.remove(tempDir, { recursive: true });
},
@@ -349,7 +349,7 @@ unitTest(
// deno-lint-ignore no-explicit-any
await file.read(null as any);
}, TypeError);
- // TODO: Check error kind when dispatch_minimal pipes errors properly
+ // TODO(bartlomieju): Check error kind when dispatch_minimal pipes errors properly
file.close();
await Deno.remove(tempDir, { recursive: true });
@@ -382,7 +382,7 @@ unitTest(
assert(fileInfo.size === 5);
f.close();
- // TODO: test different modes
+ // TODO(bartlomieju): test different modes
await Deno.remove(tempDir, { recursive: true });
},
);
@@ -425,7 +425,7 @@ unitTest(
assert(fileInfo.size === 5);
f.close();
- // TODO: test different modes
+ // TODO(bartlomieju): test different modes
await Deno.remove(tempDir, { recursive: true });
},
);