@tsbb/jest
Version:
TSBB is a zero-config CLI that helps you develop, test, and publish modern TypeScript project.
37 lines (36 loc) • 1.38 kB
JavaScript
import path from 'path';
import camelcase from 'camelcase';
// This is a custom Jest transformer turning file imports into filenames.
// http://facebook.github.io/jest/docs/en/webpack.html
export default {
process(sourceText, sourcePath, options) {
const assetFilename = JSON.stringify(path.basename(sourcePath));
if (sourcePath.match(/\.svg$/)) {
// Based on how SVGR generates a component name:
// https://github.com/smooth-code/svgr/blob/01b194cf967347d43d4cbe6b434404731b87cf27/packages/core/src/state.js#L6
const pascalCaseFilename = camelcase(path.parse(sourcePath).name, {
pascalCase: true,
});
const componentName = `Svg${pascalCaseFilename}`;
return `const React = require('react');
module.exports = {
__esModule: true,
default: ${assetFilename},
ReactComponent: React.forwardRef(function ${componentName}(props, ref) {
return {
$$typeof: Symbol.for('react.element'),
type: 'svg',
ref: ref,
key: null,
props: Object.assign({}, props, {
children: ${assetFilename}
})
};
}),
};`;
}
return {
code: `module.exports = ${JSON.stringify(path.basename(sourcePath))};`,
};
},
};