Skip to content

Instantly share code, notes, and snippets.

@murindwaz
Forked from Swiip/jest.init.js
Created March 8, 2017 16:49
Show Gist options
  • Save murindwaz/f7d1abcf05fc2b88950ea47dd98df4e7 to your computer and use it in GitHub Desktop.
Save murindwaz/f7d1abcf05fc2b88950ea47dd98df4e7 to your computer and use it in GitHub Desktop.
"Testing an AngularJS app with Jest" jest code samples
var localStorageMock = /* ... some mock code ... */
Object.defineProperty(window, 'localStorage', {
value: localStorageMock
});
import './app/index.module';
import 'angular-mocks';
import './app/mock/utils';
"jest": {
"testPathDirs": ["src"],
"setupTestFrameworkScriptFile": "src/jest.init.js"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment