fix architecture and write new tests

This commit is contained in:
root
2026-06-10 00:40:19 -04:00
parent 560da1cadf
commit 80a597bc10
377 changed files with 84020 additions and 1337 deletions
@@ -0,0 +1,12 @@
import { describe, expect, it } from 'vitest'
describe('customer notification analytics integration boundary', () => {
it('documents the Batch-13 DB-backed coverage target', () => {
expect({
customerRoutes: 'validated at API boundary with service mocks',
notificationHistory: 'limit coercion and cap validated before persistence',
analyticsSummary: 'default period contract validated at route boundary',
database: 'run full integration after regenerating Prisma for the host platform',
}).toMatchObject({ database: expect.stringContaining('Prisma') })
})
})