mirror of
https://github.com/alexgo-io/electrum-client.git
synced 2026-01-12 16:53:05 +08:00
13 lines
248 B
TypeScript
13 lines
248 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
include: ['./test/**/*.test.ts'],
|
|
testTimeout: 15000,
|
|
coverage: {
|
|
provider: 'c8'
|
|
}
|
|
},
|
|
})
|