Shared Jest configurations for all ODH Dashboard packages.
Provides a consistent test runner setup across the monorepo — JSDOM environment, TypeScript transforms, module name mappings, and coverage thresholds. Packages extend the shared config rather than duplicating boilerplate.
In your package jest.config.ts:
import base from '@odh-dashboard/jest-config';
export default { ...base, displayName: 'my-package' };| Path | Description |
|---|---|
config/ |
Named preset configs (dom, node) |
src/ |
Config construction helpers |
For full documentation see
docs/guidelines.md.