Files
carmanagement/apps/api/src/tests/integration/customer-notification-analytics-boundaries.test.ts
T
2026-06-10 00:40:19 -04:00

13 lines
595 B
TypeScript

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') })
})
})