Skip to content

Commit

Permalink
fix: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
fhur committed Mar 29, 2024
1 parent 874b522 commit 1938981
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/react/src/useSynthql.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ describe('useSynthql', () => {
expect(result.result.current.data).toEqual([{ id: '1', name: 'bob' }]);
}, /* 10 seconds */ 10_000);

test('fetching 1000 results', async () => {
const count = 1000;
test('fetching 100 results', async () => {
const count = 100;
const ids = Array(count)
.fill('0')
.map((_, i) => String(i));
Expand Down

0 comments on commit 1938981

Please sign in to comment.