Skip to content
Merged
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
6 changes: 5 additions & 1 deletion packages/auth/test/helpers/timeout_stub.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,11 @@ export function stubTimeouts(ids?: number[]): TimerMap {
let idCounter = 0;

sinon.stub(window, 'setTimeout').callsFake((cb: () => void, duration) => {
callbacks[duration] = cb;
if (duration !== undefined) {
callbacks[duration] = cb;
} else {
callbacks[0] = cb;
}
// For some bizarre reason setTimeout always get shoehorned into NodeJS.Timeout,
// which is flat-wrong. This is the easiest way to fix it.
// eslint-disable-next-line @typescript-eslint/no-explicit-any
Expand Down