mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-01-26 10:59:53 +00:00
* add litegraph test config * remove unnecessary setup file * exclude litegraph test config * add npm script
19 lines
309 B
TypeScript
19 lines
309 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
plugins: [],
|
|
test: {
|
|
globals: true,
|
|
environment: 'jsdom',
|
|
include: ['src/lib/litegraph/test/**/*.test.ts']
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
'@': '/src'
|
|
}
|
|
},
|
|
define: {
|
|
__USE_PROD_CONFIG__: false
|
|
}
|
|
})
|