@amedia/jest-config
v2.1.0
Published
Jest config for Amedia
Maintainers
Keywords
Readme
@amedia/jest-config
Amedia's shared Jest base configuration. Sensible defaults for coverage, test environment, and verbosity.
Install
npm install --save-dev @amedia/jest-config jestUse
// jest.config.js
import base from '@amedia/jest-config';
export default base;Or extend it with project-specific options:
// jest.config.js
import base from '@amedia/jest-config';
export default {
...base,
setupFilesAfterEach: ['<rootDir>/jest.setup.js'],
};Notes
Requires Node 22+. Run Jest through @amedia/kragl-jest for
the standard kragl pipeline.
