| 1 |
/** |
| 2 |
* External dependencies |
| 3 |
*/ |
| 4 |
const path = require( 'path' ); |
| 5 |
|
| 6 |
module.exports = { |
| 7 |
preset: '@automattic/calypso-build', |
| 8 |
roots: [ '<rootDir>/extensions/' ], |
| 9 |
transform: { |
| 10 |
'\\.[jt]sx?$': path.join( __dirname, 'tests', 'jest-extensions-babel-transform' ), |
| 11 |
'\\.(gif|jpg|jpeg|png|svg|scss|sass|css)$': require.resolve( |
| 12 |
'@automattic/calypso-build/jest/transform/asset' |
| 13 |
), |
| 14 |
}, |
| 15 |
}; |
| 16 |
|