Files
ustk-todolist/react/config/jest/fileTransform.js
Stepan Usatiuk b054c8fb0c eject from create-react-app,
fix google api in production
2018-07-09 00:33:54 +03:00

13 lines
305 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/en/webpack.html
module.exports = {
process(src, filename) {
return `module.exports = ${JSON.stringify(path.basename(filename))};`;
},
};