* Split SearchControls into separate component * Add testing config * Add webpack config * Add snapshot tests for Search Controls * bump version and update package-lock format
12 lines
263 B
JavaScript
12 lines
263 B
JavaScript
const { createConfig } = require('@edx/frontend-build');
|
|
|
|
module.exports = createConfig('jest', {
|
|
setupFilesAfterEnv: [
|
|
'<rootDir>/src/setupTest.js',
|
|
],
|
|
modulePaths: ['<rootDir>/src/'],
|
|
snapshotSerializers: [
|
|
'enzyme-to-json/serializer',
|
|
],
|
|
});
|