Files
zitadel/packages/zitadel-react/jest.config.ts
2023-06-08 06:37:35 +02:00

9 lines
241 B
TypeScript

import type { JestConfigWithTsJest } from 'ts-jest'
const jestConfig: JestConfigWithTsJest = {
preset: 'ts-jest',
testEnvironment: 'jsdom',
setupFilesAfterEnv: [ '@testing-library/jest-dom/extend-expect' ]
}
export default jestConfig