Files
Neon-Desk/lib/server/financial-statements.test.ts
francy51 db01f207a5 Expand financials surfaces with ratios, KPIs, and cadence support
- Add bundled financial modeling pipeline (ratios, KPI dimensions/notes, trend series, standardization)
- Introduce company financial bundles storage (Drizzle migration + repo wiring)
- Refactor financials page/API/query flow to use surfaceKind + cadence and new response shapes
2026-03-07 15:16:35 -05:00

9 lines
320 B
TypeScript

import { describe, expect, it } from 'bun:test';
import { __financialStatementsInternals } from './financial-statements';
describe('financial statements service internals', () => {
it('returns the default sync limit', () => {
expect(__financialStatementsInternals.defaultFinancialSyncLimit()).toBe(60);
});
});