mirror of
https://github.com/softprops/action-gh-release.git
synced 2026-05-26 20:49:52 +08:00
12 lines
214 B
TypeScript
12 lines
214 B
TypeScript
|
|
import { defineConfig } from 'vitest/config';
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
test: {
|
||
|
|
environment: 'node',
|
||
|
|
coverage: {
|
||
|
|
reporter: ['text', 'lcov'],
|
||
|
|
},
|
||
|
|
include: ['__tests__/**/*.ts'],
|
||
|
|
},
|
||
|
|
});
|