mirror of
https://github.com/raniendu/OChat.git
synced 2026-07-22 07:46:11 +00:00
8 lines
150 B
TypeScript
8 lines
150 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: 'node',
|
|
include: ['tests/**/*.test.ts']
|
|
}
|
|
});
|