Adds jest, ts-jest, ts-node, and @types/jest as devDependencies and creates jest.config.ts with the ts-jest preset. `npm test` exits 0 with no test files. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
10 lines
162 B
TypeScript
10 lines
162 B
TypeScript
import type { Config } from 'jest';
|
|
|
|
const config: Config = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
passWithNoTests: true,
|
|
};
|
|
|
|
export default config;
|