10 lines
419 B
TypeScript
10 lines
419 B
TypeScript
import { describe, expect, it } from 'bun:test';
|
|
import { __financialStatementsInternals } from './financial-statements';
|
|
|
|
describe('financial statements service internals', () => {
|
|
it('returns default sync limits by window', () => {
|
|
expect(__financialStatementsInternals.defaultFinancialSyncLimit('10y')).toBe(60);
|
|
expect(__financialStatementsInternals.defaultFinancialSyncLimit('all')).toBe(120);
|
|
});
|
|
});
|