mirror of
https://github.com/supabase/supabase.git
synced 2026-07-01 00:34:18 +08:00
10 lines
224 B
TypeScript
10 lines
224 B
TypeScript
import type { Config } from '@jest/types'
|
|
|
|
const config: Config.InitialOptions = {
|
|
preset: 'ts-jest',
|
|
setupFilesAfterEnv: ['@testing-library/jest-dom/extend-expect'],
|
|
testEnvironment: 'jsdom',
|
|
}
|
|
|
|
export default config
|