9 lines
160 B
TypeScript
9 lines
160 B
TypeScript
|
|
import { defineProject } from 'vitest/config';
|
||
|
|
|
||
|
|
export default defineProject({
|
||
|
|
test: {
|
||
|
|
name: 'local-proxy',
|
||
|
|
include: ['tests/**/*.test.ts'],
|
||
|
|
},
|
||
|
|
});
|