Skip to content

Instantly share code, notes, and snippets.

@theKashey
Last active March 29, 2018 11:46
Show Gist options
  • Save theKashey/05144bfab38e0af6eecbe3044a4a7168 to your computer and use it in GitHub Desktop.
Save theKashey/05144bfab38e0af6eecbe3044a4a7168 to your computer and use it in GitHub Desktop.
dooms-day proxyquire
import proxyquire from 'proxyquire';
import sinon from 'sinon';
const Launch= sinon.stub()
const case = proxyquire.load('./dooms-day.js',{
'./rocket-silo', { Launch },
'doom-scheduler', { theDay: Promise.resolve()
});
expect(Launch).toHaveBeenCalled();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment