We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c09031f commit 1e11b36Copy full SHA for 1e11b36
1 file changed
extensions/feishu/src/test-support/lifecycle-test-support.ts
@@ -386,15 +386,15 @@ export async function expectFeishuReplyPipelineDedupedAfterPostSendFailure(param
386
expect(params.dispatchReplyFromConfigMock).toHaveBeenCalledTimes(1);
387
expect(params.runtimeErrorMock).toHaveBeenCalledTimes(1);
388
},
389
- { timeout: waitTimeoutMs },
+ waitTimeoutMs == null ? undefined : { timeout: waitTimeoutMs },
390
),
391
waitForSecond: () =>
392
vi.waitFor(
393
() => {
394
395
396
397
398
399
});
400
}
0 commit comments