mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-01-26 19:09:52 +00:00
12 lines
290 B
TypeScript
12 lines
290 B
TypeScript
import type { JestConfigWithTsJest } from 'ts-jest'
|
|
import baseConfig from './jest.config.base'
|
|
|
|
const jestConfig: JestConfigWithTsJest = {
|
|
...baseConfig,
|
|
displayName: 'slow (DOM)',
|
|
testTimeout: 10000,
|
|
testMatch: ['**/tests-ui/tests/slow/**/*.test.ts']
|
|
}
|
|
|
|
export default jestConfig
|