Don't automock

This commit is contained in:
Jordan Eldredge 2016-11-28 20:21:47 -08:00
parent d55f25f424
commit 2a3e59f160
7 changed files with 0 additions and 18 deletions

View file

@ -1,5 +1,3 @@
jest.unmock('../components/Band.jsx');
import {
spriteNumber,
spriteOffsets

View file

@ -1,5 +1,3 @@
jest.unmock('../components/EqGraph.jsx');
import {
roundToEven
} from '../components/EqGraph.jsx';

View file

@ -1,6 +1,3 @@
jest.unmock('../components/Marquee.jsx');
jest.unmock('../utils');
import {
getBalanceText,
getVolumeText,

View file

@ -1,5 +1,3 @@
jest.unmock('../skinSprites');
import skinSprites from '../skinSprites';
const getNames = (arr) => arr.map((item) => item.name);

View file

@ -1,4 +1,3 @@
jest.unmock('../snapUtils');
import {
top,

View file

@ -1,7 +1,5 @@
import fs from 'fs';
jest.unmock('../utils');
import {
getTimeObj,
getTimeStr,

View file

@ -59,11 +59,5 @@
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0"
},
"jest": {
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react/",
"<rootDir>/node_modules/react-redux/"
]
}
}