mirror of
https://github.com/Nezumi-2711/uptime-monitoring.git
synced 2026-09-22 13:48:31 +00:00
16 lines
378 B
TypeScript
16 lines
378 B
TypeScript
import { cloudflareTest, readD1Migrations } from '@cloudflare/vitest-plugin';
|
|
import { defineConfig } from 'vitest/config';
|
|
|
|
const migrations = await readD1Migrations('./migrations');
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
cloudflareTest({
|
|
wrangler: { configPath: './wrangler.jsonc' },
|
|
miniflare: {
|
|
bindings: { TEST_MIGRATIONS: migrations },
|
|
},
|
|
}),
|
|
],
|
|
});
|