Skip to content

Commit f23ed14

Browse files
committed
chore(proof): fix promise executor lint in logs-cli proof
1 parent 79dcc46 commit f23ed14

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

scripts/proof/logs-cli-runtime-stream-errors.mts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,9 @@ try {
3838
{ maxBytes: 1024 },
3939
);
4040

41-
await new Promise<void>((resolve) => setTimeout(resolve, 50));
41+
await new Promise<void>((resolve) => {
42+
setTimeout(resolve, 50);
43+
});
4244
emitError?.();
4345

4446
const result = await resultPromise;

0 commit comments

Comments
 (0)