[roomcomments] implement basic room comments

This commit is contained in:
Devin Zuczek
2026-08-20 19:00:22 -04:00
parent 062c07cc33
commit 655c7ee4d6
17 changed files with 15670 additions and 2 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',
},
},
}),
],
})