simple-keyboard/config/jest/cssTransform.js

15 lines
314 B
JavaScript
Raw Normal View History

2018-04-21 04:34:02 +08:00
'use strict';
// This is a custom Jest transformer turning style imports into empty objects.
2018-11-10 00:06:46 +08:00
// http://facebook.github.io/jest/docs/en/webpack.html
2018-04-21 04:34:02 +08:00
module.exports = {
process() {
return 'module.exports = {};';
},
getCacheKey() {
// The output is always the same.
return 'cssTransform';
},
};