Jest Setup (TypeScript)
- Install
jest,ts-jest, and@types/jest. jest.config.ts: setpreset: 'ts-jest'andtestEnvironment: 'node'(orjsdomfor UI).- Map path aliases with
moduleNameMapperso@/xresolves like your bundler. - Gate CI with
coverageThresholdso coverage can't silently regress.