mirror of
https://github.com/gavvvr/obsidian-imgur-plugin.git
synced 2026-07-22 05:10:27 +00:00
12 lines
246 B
TypeScript
12 lines
246 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
coverage: {
|
|
provider: 'v8',
|
|
reporter: ['lcov', 'html'],
|
|
},
|
|
reporters: ['default', 'junit'],
|
|
outputFile: 'test-results.xml',
|
|
},
|
|
})
|