refactor: hide tooltip based on arg refactor: card header to include title link feat: delete unit option feat: duplicate unit option refactor: title click handler name and remove unwanted scss properties test: new unit and edit unit option test: add delete unit and combine it with section and subsection test test: add duplicate unit test and combine it with section & subsection test refactor: replace act call by oneline test: add publish unit & subsection test and combine it with section test refactor: add jest-expect-message to add custom msg to tests fix: lint issues test: fix unit card tests refactor: remove unnecessary css and message refactor: pass title as component to card header refactor: extract status badge to a component fix: lint issues refactor: rename status badge component test: fix card header tests refactor: new item button styling feat: show loading spinner while sections are loading refactor: new button style
19 lines
388 B
JavaScript
19 lines
388 B
JavaScript
const { createConfig } = require('@edx/frontend-build');
|
|
|
|
module.exports = createConfig('jest', {
|
|
setupFilesAfterEnv: [
|
|
'jest-expect-message',
|
|
'<rootDir>/src/setupTest.js',
|
|
],
|
|
coveragePathIgnorePatterns: [
|
|
'src/setupTest.js',
|
|
'src/i18n',
|
|
],
|
|
snapshotSerializers: [
|
|
'enzyme-to-json/serializer',
|
|
],
|
|
moduleNameMapper: {
|
|
'^lodash-es$': 'lodash',
|
|
},
|
|
});
|