mirror of
https://github.com/supabase/supabase.git
synced 2026-07-04 06:44:22 +08:00
14 lines
400 B
JavaScript
14 lines
400 B
JavaScript
module.exports = {
|
|
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
|
|
moduleDirectories: ['<rootDir>', 'node_modules'],
|
|
setupFiles: ['jest-canvas-mock', './tests/setup/radix'],
|
|
testEnvironment: 'jsdom',
|
|
testRegex: '(.*\\.test.(js|jsx|ts|tsx)$)',
|
|
transform: { '^.+\\.(t|j)sx?$': 'ts-jest' },
|
|
globals: {
|
|
'ts-jest': {
|
|
tsconfig: 'tsconfig.test.json',
|
|
},
|
|
},
|
|
}
|