Skip to content

[Auth] CI test compilation error. #7966

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jan 23, 2024
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