safe-react/config/jest/cssTransform.js

13 lines
320 B
JavaScript
Raw Normal View History

2018-03-01 09:05:56 +01: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 18:11:44 +04:00
return 'module.exports = {};'
2018-03-01 09:05:56 +01:00
},
getCacheKey(fileData, filename) {
// The output is always the same.
2019-05-29 18:11:44 +04:00
return 'cssTransform'
2018-03-01 09:05:56 +01:00
},
2019-05-29 18:11:44 +04:00
}