import type { Config } from '@jest/types'; // eslint-disable-next-line @typescript-eslint/require-await export default async (): Promise => ({ displayName: 'unit test', preset: 'ts-jest', testEnvironment: 'node', testRunner: 'jest-circus/runner', testMatch: ['/tests/**/*.test.ts'], globals: { 'ts-jest': { tsconfig: '/tests/tsconfig.json' } } });