Skip to content

Instantly share code, notes, and snippets.

@asci
Created January 23, 2018 09:38
Show Gist options
  • Save asci/3e6ccf50bfc4dea62824c8aebf866cd6 to your computer and use it in GitHub Desktop.
Save asci/3e6ccf50bfc4dea62824c8aebf866cd6 to your computer and use it in GitHub Desktop.
Mocha cheatsheet
// return resolved promise
sandbox.stub(Obj, 'method').resolves(value);
// return rejected promise
sandbox.stub(Obj, 'method').rejects(value);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment