mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-11 22:02:26 +00:00
9 lines
241 B
TypeScript
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 |