Skip to content

Instantly share code, notes, and snippets.

@rickyalmeidadev
Created February 15, 2022 06:08
Show Gist options
  • Save rickyalmeidadev/6cf6328a30b35966c9c2a027ccc9af06 to your computer and use it in GitHub Desktop.
Save rickyalmeidadev/6cf6328a30b35966c9c2a027ccc9af06 to your computer and use it in GitHub Desktop.
svg transformer for jest
module.exports = {
transform: {
'\\.svg$': '<rootDir>/__mocks__/svg-transformer.js',
},
}
const path = require('path')
module.exports = {
process: (src, filename) =>
`module.exports = ${JSON.stringify(path.basename(filename))};`,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment