safe-react/config/jest/cssTransform.js

13 lines
320 B
JavaScript
Raw Normal View History

2018-03-01 08:05:56 +00:00
// This is a custom Jest transformer turning style imports into empty objects.
// http://facebook.github.io/jest/docs/tutorial-webpack.html
module.exports = {
process() {
2019-05-29 14:11:44 +00:00
return 'module.exports = {};'
2018-03-01 08:05:56 +00:00
},
getCacheKey(fileData, filename) {
// The output is always the same.
2019-05-29 14:11:44 +00:00
return 'cssTransform'
2018-03-01 08:05:56 +00:00
},
2019-05-29 14:11:44 +00:00
}