Skip to content

Instantly share code, notes, and snippets.

@luan0ap
Created November 24, 2020 13:22
Show Gist options
  • Save luan0ap/dbb58c33b0764de004ca2ad3b9e22750 to your computer and use it in GitHub Desktop.
Save luan0ap/dbb58c33b0764de004ca2ad3b9e22750 to your computer and use it in GitHub Desktop.
const delayPromiseToTest = (timeout = 1000, error = null) => new Promise((resolve, reject) => { setTimeout(() => error instanceof Error ? reject(error) :resolve(), timeout) })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment