Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions test/_generate_test_file.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@

while (remainingSize > 0) {
const writeSize = Math.min(remainingSize, chunkSize);
// TODO: go/ts59upgrade - Remove this suppression after TS 5.9.2 upgrade
// TS2769: No overload matches this call.
// @ts-ignore

Check failure on line 29 in test/_generate_test_file.ts

View workflow job for this annotation

GitHub Actions / format

Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free
await fileHandle.write(buffer, 0, writeSize);
remainingSize -= writeSize;
}
Expand Down
Loading