github.com/replicatedhq/ship@v0.55.0/web/init/config/jest/cssTransform.js (about) 1 'use strict'; 2 3 // This is a custom Jest transformer turning style imports into empty objects. 4 // http://facebook.github.io/jest/docs/en/webpack.html 5 6 module.exports = { 7 process() { 8 return 'module.exports = {};'; 9 }, 10 getCacheKey() { 11 // The output is always the same. 12 return 'cssTransform'; 13 }, 14 };