Skip to content

Instantly share code, notes, and snippets.

@ignu
Created January 28, 2015 20:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ignu/4b328ae696f8d0b56d1f to your computer and use it in GitHub Desktop.
Save ignu/4b328ae696f8d0b56d1f to your computer and use it in GitHub Desktop.
# doesn't work
# Error: /Users/ignu/code/true-app/spec/react-tests/log-activity-test.coffee:
# Cannot find module './log_activity' from '/Users/ignu/code/true-app/spec/react-tests/log-activity-test.coffee'
r = (path)->
jest.dontMock path
require path
r('./log_activity')
# totally works fine
jest.dontMock('./log_activity')
require('./log_activity')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment