Skip to content
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

TODO: remove rxjs dependency #16

Open
Aetherall opened this issue Apr 6, 2022 · 0 comments
Open

TODO: remove rxjs dependency #16

Aetherall opened this issue Apr 6, 2022 · 0 comments

Comments

@Aetherall
Copy link

The following naive implementation makes the tests pass
saving it here cause I have to go sleep

class TimeoutError extends Error {}

function waitForAssertion(assertion: (() => any) | (() => Promise<any>), timeout = 1000, interval = 100): Promise<void> {
  return new Promise((resolve, reject) => {
    const clock = setInterval(async () => {
      try {
        await assertion()
        resolve();
      } catch(err){
        if(err instanceof ReferenceError || err instanceof TypeError){
          clearInterval(clock)
          reject(err);
        }
      }
      
    }, interval);

    setTimeout(() => {
      clearInterval(clock);
      reject(new TimeoutError());
    }, timeout);
  });
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant