Files
frontend-app-admin-console/jest.config.js
Diana Olarte 885b408e71 refactor: update the app template for the console
- Update the basic libraries needed for the application
- Update README and configuration files
- Create the authz folder as the fist module for development
2025-09-24 08:23:06 -03:00

14 lines
437 B
JavaScript

const { createConfig } = require('@openedx/frontend-build');
module.exports = createConfig('jest', {
// setupFilesAfterEnv is used after the jest environment has been loaded. In general this is what you want.
// If you want to add config BEFORE jest loads, use setupFiles instead.
setupFilesAfterEnv: [
'<rootDir>/src/setupTest.jsx',
],
coveragePathIgnorePatterns: [
'src/setupTest.jsx',
'src/i18n',
],
});