Skip to content

Commit 0c34c86

Browse files
committed
chore: fix lint
1 parent 49ffbe3 commit 0c34c86

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/cli/src/command-helpers/contracts.test.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -145,9 +145,9 @@ async function retry<T>(operation: () => Promise<T>, maxRetries = 3, sleepMs = 5
145145
const withTimeout = <T>(promise: Promise<T>, timeoutMs: number): Promise<T> => {
146146
return Promise.race([
147147
promise,
148-
new Promise<T>((_, reject) =>
149-
setTimeout(() => reject(new Error(`Operation timed out after ${timeoutMs}ms`)), timeoutMs)
150-
)
148+
new Promise<T>((_, reject) =>
149+
setTimeout(() => reject(new Error(`Operation timed out after ${timeoutMs}ms`)), timeoutMs),
150+
),
151151
]);
152152
};
153153

0 commit comments

Comments
 (0)