git.fiddlerwoaroof.com
config/jest/cssTransform.js
ee1296bf
 // This is a custom Jest transformer turning style imports into empty objects.
 // http://facebook.github.io/jest/docs/en/webpack.html
 
 module.exports = {
   process() {
84348047
     return "module.exports = {};";
ee1296bf
   },
   getCacheKey() {
     // The output is always the same.
84348047
     return "cssTransform";
   }
ee1296bf
 };