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