15 lines
284 B
TypeScript
15 lines
284 B
TypeScript
import { defineConfig, mergeConfig } from 'vitest/config';
|
|
|
|
import sharedConfig from './vitest.shared.config';
|
|
|
|
export default mergeConfig(
|
|
sharedConfig,
|
|
defineConfig({
|
|
test: {
|
|
name: 'unit',
|
|
environment: 'node',
|
|
include: ['src/**/*.test.ts'],
|
|
},
|
|
})
|
|
);
|