mirror of
https://github.com/hcengineering/platform.git
synced 2026-08-20 19:32:22 +02:00
9 lines
185 B
JavaScript
9 lines
185 B
JavaScript
module.exports = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'jsdom',
|
|
testMatch: ['**/?(*.)+(spec|test).[jt]s?(x)'],
|
|
transformIgnorePatterns: [
|
|
'node_modules/(?!(svelte)/)'
|
|
]
|
|
}
|