proxyd
Version:
Reverse proxy to socks5 or http proxy
25 lines (24 loc) • 576 B
text/typescript
import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
watch: false,
//fileParallelism: false,
testTimeout: 50000,
include: ['test/**/*.ts'],
coverage: {
enabled: true,
include: [
'src/**/*.ts',
],
exclude: [
'src/start.ts',
],
reporter: [
"text",
"json-summary",
"html"
],
reportsDirectory: './coverage',
},
},
});