V1 without presentation styling
This commit is contained in:
18
presentation/jest.config.ts
Normal file
18
presentation/jest.config.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
import type { Config } from 'jest'
|
||||
import nextJest from 'next/jest'
|
||||
|
||||
const createJestConfig = nextJest({
|
||||
dir: './',
|
||||
})
|
||||
|
||||
const config: Config = {
|
||||
modulePathIgnorePatterns: ['<rootDir>/.blueprints'],
|
||||
setupFiles: ['dotenv/config'],
|
||||
setupFilesAfterEnv: [
|
||||
'jest-extended/all',
|
||||
'@testing-library/jest-dom/extend-expect',
|
||||
],
|
||||
testEnvironment: 'jest-environment-jsdom',
|
||||
}
|
||||
|
||||
export default createJestConfig(config)
|
||||
Reference in New Issue
Block a user