import type { Config } from 'jest'; import { defaultConfig } from '../../jest.config'; // Sync object const config: Config = { ...defaultConfig, testTimeout: 60_000, coverageThreshold: { global: { branches: 75, functions: 80, lines: 80, statements: 80, }, }, }; export default config;