(overrides: Partial<ListLogsParams> = {})
| 124 | } |
| 125 | |
| 126 | function baseParams(overrides: Partial<ListLogsParams> = {}): ListLogsParams { |
| 127 | return { |
| 128 | workspaceId: 'ws-1', |
| 129 | limit: 100, |
| 130 | sortBy: 'date', |
| 131 | sortOrder: 'desc', |
| 132 | ...overrides, |
| 133 | } as ListLogsParams |
| 134 | } |
| 135 | |
| 136 | describe('listLogs', () => { |
| 137 | beforeEach(() => { |
no outgoing calls
no test coverage detected