remove jest-setup.ts from zitadel-react

This commit is contained in:
Elio Bischof
2023-06-08 06:37:35 +02:00
parent 995dce8e6b
commit b44fb27c20
2 changed files with 1 additions and 2 deletions

View File

@@ -1 +0,0 @@
import '@testing-library/jest-dom/extend-expect'

View File

@@ -3,7 +3,7 @@ import type { JestConfigWithTsJest } from 'ts-jest'
const jestConfig: JestConfigWithTsJest = { const jestConfig: JestConfigWithTsJest = {
preset: 'ts-jest', preset: 'ts-jest',
testEnvironment: 'jsdom', testEnvironment: 'jsdom',
setupFilesAfterEnv: [ '<rootDir>/jest-setup.ts' ] setupFilesAfterEnv: [ '@testing-library/jest-dom/extend-expect' ]
} }
export default jestConfig export default jestConfig