mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-12 11:20:11 +00:00
14 lines
289 B
TypeScript
14 lines
289 B
TypeScript
import { defineWorkspace } from 'vitest/config';
|
|
|
|
export default defineWorkspace([
|
|
'packages/*/vitest.config.{e2e,unit}.ts',
|
|
{
|
|
test: {
|
|
include: ['**/__tests__/**/*.spec.{ts?(x),js?(x)}'],
|
|
name: 'unit test',
|
|
environment: 'jsdom',
|
|
globals: true
|
|
}
|
|
},
|
|
])
|