3
0
mirror of https://github.com/hodgef/simple-keyboard.git synced 2025-03-03 07:56:13 +08:00
simple-keyboard/config/jest/fileTransform.js
2018-04-20 16:34:02 -04:00

13 lines
311 B
JavaScript

'use strict';
const path = require('path');
// This is a custom Jest transformer turning file imports into filenames.
// http://facebook.github.io/jest/docs/tutorial-webpack.html
module.exports = {
process(src, filename) {
return `module.exports = ${JSON.stringify(path.basename(filename))};`;
},
};