Skip to content

Commit

Permalink
Hearthstone metadata response can take a while
Browse files Browse the repository at this point in the history
  • Loading branch information
Pewtro committed Oct 6, 2024
1 parent 4b77b8f commit 4d981f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/client/src/tests/hs.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ describe.concurrent('smoketest some hs api responses', async () => {
expect(response.data).toBeDefined();
});

it('should be able to fetch a card back', async ({ expect }) => {
it('should be able to fetch a card back', { timeout: 10_000 }, async ({ expect }) => {
const response = await client.sendRequest(hs.fetchOneCardBack('1', 'en_GB'));
expect(response.data).toBeDefined();
});
Expand Down

0 comments on commit 4d981f1

Please sign in to comment.