@momentum-ui/react-collaboration
Version:
Cisco Momentum UI Framework for React Collaboration Applications
15 lines (13 loc) • 555 B
JavaScript
//---------------------------------------------------------------------
// This is a fix for jest handling static assets like imported images
// when running tests. It's configured in jest section of package.json
//
// See:
// https://github.com/facebook/jest/issues/2663#issuecomment-317109798
//---------------------------------------------------------------------
const path = require('path');
module.exports = {
process(src, filename /*, config, options */) {
return 'module.exports = ' + JSON.stringify(path.basename(filename)) + ';';
},
};