Skip to content

Instantly share code, notes, and snippets.

@theKashey
Last active March 29, 2018 12:13
Show Gist options
  • Save theKashey/e156e46dd83e9dcb3aa59a3a3fa44954 to your computer and use it in GitHub Desktop.
Save theKashey/e156e46dd83e9dcb3aa59a3a3fa44954 to your computer and use it in GitHub Desktop.
mocked dooms-day
export const theDay = Promise.resolve();
export const Launch = jest.fn(); //this is "replacement" code
import {Launch} from './rocket-silo'; // magic! magic!
import {theDay} from 'doom-scheduler'; // might be not a great idea
import 'rocket-silo';
expect(Launch).toHaveBeenCalled();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment