summaryrefslogtreecommitdiff
path: root/cli/tests/unit/files_test.ts
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2021-01-17 00:32:59 +0100
committerGitHub <noreply@github.com>2021-01-17 00:32:59 +0100
commitb26dcbc69d56b6ac5780520dad47f10460127d3e (patch)
tree1f0c45b2c39eff83a9fede7a9e6e268a5e04194b /cli/tests/unit/files_test.ts
parentfc45a19801fe32eaf3a82ab8333f433fcfd7ca4e (diff)
chore: Enforce ban-untagged-todo lint rule (#9135)
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 });
},
);