mirror of
https://github.com/logto-io/logto.git
synced 2024-12-16 20:26:19 -05:00
8 lines
247 B
TypeScript
8 lines
247 B
TypeScript
import { merge, Config } from '@silverhand/jest-config';
|
|
|
|
const config: Config.InitialOptions = merge({
|
|
setupFilesAfterEnv: ['jest-matcher-specific-error', './jest.setup.ts'],
|
|
globalSetup: './jest.global-setup.ts',
|
|
});
|
|
|
|
export default config;
|