mirror of
https://github.com/logto-io/logto.git
synced 2024-12-16 20:26:19 -05:00
2d7918a224
* feat(jest-config): init package * chore(deps): upgrade `@types/jest` * fix(core): add jest-matcher dependency add jest-matcher dependency Co-authored-by: simeng-li <simeng@silverhand.io>
9 lines
269 B
TypeScript
9 lines
269 B
TypeScript
import { merge, Config } from '@logto/jest-config';
|
|
|
|
const config: Config.InitialOptions = merge({
|
|
testEnvironment: 'node',
|
|
setupFilesAfterEnv: ['jest-matcher-specific-error', './jest.setup.ts'],
|
|
globalSetup: './jest.global-setup.ts',
|
|
});
|
|
|
|
export default config;
|