vuepress-theme-plume/vitest.config.ts
pengzhanbo 4464703b7b
test: add unit test (#262)
* test: add unit test

* chore: tweak

* chore: tweak
2024-10-12 02:09:15 +08:00

13 lines
228 B
TypeScript

import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
coverage: {
enabled: true,
provider: 'istanbul',
all: false,
reporter: ['text', 'clover', 'json'],
},
},
})