Add litegraph tests to vitest config

This commit is contained in:
Benjamin Lu
2025-08-04 16:21:09 -04:00
parent b10d06166a
commit fd71c97dc4

View File

@@ -9,7 +9,8 @@ export default defineConfig({
setupFiles: ['./vitest.setup.ts'],
include: [
'tests-ui/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}',
'src/components/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'
'src/components/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}',
'src/lib/litegraph/test/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'
],
coverage: {
reporter: ['text', 'json', 'html']