Created by: bugzpodder
Gonna see if jest tests work now: https://github.com/facebook/create-react-app/issues/2294 Upgrade to jest 23 Convert mocha tests to jest via https://github.com/facebook/create-react-app/pull/2316
Changed CSS test because of a JSDOM parsing issue (it couldn't handle the entire bootstrap css) integration config was added because after ejecting jest would have its own config in package.json and I need to override it via --config. tranformIgnorePatterns change is due to https://github.com/facebook/jest/issues/6385
Note: https://github.com/facebook/jest/pull/6523
'[/\\\\\\\\]node_modules[/\\\\\\\\].+\\.(js|jsx|mjs)$'.replace(/(\/|(.)?\\(?![[\]{}()*+?.^$|\\]))/g, (_match, p1, p2) => (p2 && p2 !== '\\' ? p2 + '\\\\' : '\\\\')) === '[/\\\\]node_modules[/\\\\].+\\.(js|jsx|mjs)$'.replace(/(\/|\\(?!\.))/g, '\\\\');
blocked by https://github.com/facebook/jest/issues/6546