mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-19 09:33:53 +00:00
14 lines
247 B
TypeScript
14 lines
247 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
projects: [
|
|
'packages/cli',
|
|
'packages/core',
|
|
'packages/vscode-ide-companion',
|
|
'integration-tests',
|
|
'scripts',
|
|
],
|
|
},
|
|
});
|