Skip to content

Commit c140520

Browse files
authored
test(client-sqs): increase timeout from 5s to 60s (#7603)
1 parent da9c913 commit c140520

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ test-endpoints:
4848
npx jest -c ./tests/endpoints-2.0/jest.config.js --bail --verbose false
4949

5050
test-e2e: bundles
51-
yarn g:vitest run -c vitest.config.e2e.mts --retry=4
51+
yarn g:vitest run -c vitest.config.e2e.mts --retry=4 --test-timeout=60000
5252
yarn g:vitest run -c vitest.config.browser.e2e.mts --retry=4
5353
make test-bundlers
5454

clients/client-sqs/test/sqs-queues-features.e2e.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,8 @@ describe("SQS Queues", () => {
7070
(result) => {
7171
const queueUrls = result.QueueUrls || [];
7272
return createdQueues.every((createdQueue) => queueUrls.includes(createdQueue));
73-
}
73+
},
74+
{ maxTime: 15 }
7475
);
7576

7677
// Check that created queues exist in the list

0 commit comments

Comments
 (0)