0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-23 20:33:16 -05:00
logto/packages/core/jest.setup.ts

13 lines
271 B
TypeScript

/**
* Setup environment variables for unit test
*/
import envSet from '@/env-set';
jest.mock('@/lib/logto-config');
jest.mock('@/env-set/check-alteration-state');
// eslint-disable-next-line unicorn/prefer-top-level-await
(async () => {
await envSet.load();
})();