- 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
9 lines
320 B
TypeScript
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);
|
|
});
|
|
});
|