mirror of
https://github.com/status-im/safe-react.git
synced 2025-01-10 10:05:38 +00:00
12 lines
302 B
JavaScript
12 lines
302 B
JavaScript
// @flow
|
|
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))};`
|
|
},
|
|
}
|