jest.transfer.js 177 B

1234567
  1. const path = require('path');
  2. module.exports = {
  3. process(src, filename, config, options) {
  4. return `module.exports = ${JSON.stringify(path.basename(filename))};`;
  5. },
  6. };