mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 15:11:06 +01:00
16 lines
429 B
JavaScript
16 lines
429 B
JavaScript
/**
|
|
* External dependencies
|
|
*/
|
|
const path = require( 'path' );
|
|
|
|
module.exports = {
|
|
preset: '@automattic/calypso-build',
|
|
roots: [ '<rootDir>/extensions/', '<rootDir>/modules/search/instant-search' ],
|
|
transform: {
|
|
'\\.[jt]sx?$': path.join( __dirname, 'tests', 'jest-extensions-babel-transform' ),
|
|
'\\.(gif|jpg|jpeg|png|svg|scss|sass|css)$': require.resolve(
|
|
'@automattic/calypso-build/jest/transform/asset'
|
|
),
|
|
},
|
|
};
|