71aaec93ef
this adds the groundwork to start unit testing some modules
19 lines
313 B
TypeScript
19 lines
313 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
projects: [
|
|
{
|
|
test: {
|
|
name: 'unit',
|
|
include: ['test/unit/*.{test,spec}.ts'],
|
|
environment: 'node',
|
|
},
|
|
},
|
|
],
|
|
coverage: {
|
|
enabled: true,
|
|
},
|
|
},
|
|
});
|