Files
zitadel/packages/zitadel-react/jest.config.ts

9 lines
241 B
TypeScript
Raw Normal View History

2023-05-25 17:11:36 +02:00
import type { JestConfigWithTsJest } from 'ts-jest'
const jestConfig: JestConfigWithTsJest = {
preset: 'ts-jest',
2023-05-25 23:31:43 +02:00
testEnvironment: 'jsdom',
setupFilesAfterEnv: [ '@testing-library/jest-dom/extend-expect' ]
2023-05-25 17:11:36 +02:00
}
export default jestConfig