mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-01-26 19:09:52 +00:00
13 lines
351 B
TypeScript
13 lines
351 B
TypeScript
import type { JestConfigWithTsJest } from 'ts-jest'
|
|
import baseConfig from './jest.config.base'
|
|
|
|
const jestConfig: JestConfigWithTsJest = {
|
|
...baseConfig,
|
|
displayName: 'fast',
|
|
setupFiles: ['./tests-ui/tests/fast/globalSetup.ts'],
|
|
setupFilesAfterEnv: undefined,
|
|
testMatch: ['**/tests-ui/tests/fast/**/*.test.ts']
|
|
}
|
|
|
|
export default jestConfig
|