mirror of
https://github.com/linsa-io/linsa.git
synced 2026-01-12 12:20:23 +01:00
13 lines
229 B
TypeScript
13 lines
229 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
pool: '@cloudflare/vitest-pool-workers',
|
|
poolOptions: {
|
|
workers: {
|
|
wrangler: { configPath: './wrangler.jsonc' },
|
|
},
|
|
},
|
|
},
|
|
});
|