summaryrefslogtreecommitdiffstats
path: root/webui/config/jest/cssTransform.js
blob: aa17d127ac84b3796b13ffc3303be2d88b6fbb5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// This is a custom Jest transformer turning style imports into empty objects.
// http://facebook.github.io/jest/docs/tutorial-webpack.html

module.exports = {
  process() {
    return 'module.exports = {};';
  },
  getCacheKey(fileData, filename) {
    // The output is always the same.
    return 'cssTransform';
  },
};