Skip to content

Commit

Permalink
JavaScript (v3): SQS - Narrow SQS test condition. (#6268)
Browse files Browse the repository at this point in the history
JavaScript (v3): Check queue name was deleted instead of queue count in SQS tests.
  • Loading branch information
cpyle0819 authored Mar 21, 2024
1 parent 9672b6e commit c682a07
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ describe("queue actions", () => {

await retry({ intervalInMs: 5000, maxRetries: 60 }, async () => {
const urlsAfterDelete = await listQueues();
expect(urlsAfterDelete.length).toBe(0);
expect(urlsAfterDelete).not.toContain(QueueUrl);
});
});
});

0 comments on commit c682a07

Please sign in to comment.