/** * Test-only Hono app export. Doesn't bind a port. * Always uses in-memory store (no DB required for unit tests). */ import { InMemoryStateStore } from '@kerbal-rt/db'; import { buildApp } from './app.js'; export const app = buildApp({ store: new InMemoryStateStore(), // Force-disable auth for tests; the auth path is tested separately. ingestApiKey: null, });