Skip to content

Instantly share code, notes, and snippets.

@achhunna
Created May 19, 2019 21:27
Show Gist options
  • Save achhunna/bf00871421eade1b55ffc1e6af828c7b to your computer and use it in GitHub Desktop.
Save achhunna/bf00871421eade1b55ffc1e6af828c7b to your computer and use it in GitHub Desktop.
Mocking modules
// used in component
<script>
import Constants from '../constants';
console.log(Constants.myConstant);
</script>
// in test file
jest.mock('../constants', () => ({
'myConstant': 'myValue',
}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment