mirror of
https://github.com/logto-io/logto.git
synced 2024-12-16 20:26:19 -05:00
0ade7fd492
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Gao Sun <gao@silverhand.io>
8 lines
230 B
TypeScript
8 lines
230 B
TypeScript
import type { Config } from '@silverhand/jest-config';
|
|
import { merge } from '@silverhand/jest-config';
|
|
|
|
const config: Config.InitialOptions = merge({
|
|
setupFilesAfterEnv: ['<rootDir>/jest.setup.js'],
|
|
});
|
|
|
|
export default config;
|