[leaderboard] add stub

This commit is contained in:
Devin Zuczek
2026-08-21 15:10:11 -04:00
parent 0699e4409e
commit dcaff859d0
12 changed files with 14867 additions and 1 deletions
+15
View File
@@ -0,0 +1,15 @@
import { cloudflareTest } from '@cloudflare/vitest-pool-workers'
import { defineConfig } from 'vitest/config'
export default defineConfig({
plugins: [
cloudflareTest({
wrangler: { configPath: `${__dirname}/wrangler.jsonc` },
miniflare: {
bindings: {
ENVIRONMENT: 'VITEST',
},
},
}),
],
})