mirror of
https://github.com/logto-io/logto.git
synced 2024-12-23 20:33:16 -05:00
9 lines
209 B
TypeScript
9 lines
209 B
TypeScript
|
import { Config, merge } from '@logto/jest-config';
|
||
|
|
||
|
const config: Config.InitialOptions = merge({
|
||
|
testEnvironment: 'node',
|
||
|
setupFilesAfterEnv: ['jest-matcher-specific-error'],
|
||
|
});
|
||
|
|
||
|
export default config;
|