export default function pollUntil(check, options = {}) {
  // TODO: poll until check returns a truthy value or rejects on timeout/abort
  throw new Error('Not implemented');
}
Run tests to see results.