Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
domdomegg committed Dec 22, 2024
1 parent 2e89220 commit c8083bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/airtableService.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ describe('AirtableService', () => {
const result = await service.listRecords(mockBaseId, mockTableId);

expect(mockFetch).toHaveBeenCalledWith(
`${mockBaseUrl}/v0/${mockBaseId}/${mockTableId}`,
`${mockBaseUrl}/v0/${mockBaseId}/${mockTableId}?`,
expect.any(Object),
);
expect(result).toEqual(mockResponse.records);
Expand Down

0 comments on commit c8083bf

Please sign in to comment.