cssTransform.js 335 B

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