Skip to content

Commit

Permalink
fix: increasing integration test rate-limiting value
Browse files Browse the repository at this point in the history
  • Loading branch information
geekbrother committed May 29, 2024
1 parent 2cb13ea commit 32a8c28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration/integration.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ describe('Echo Server', () => {
// Simulate flood of requests and check for rate-limited responses
it('Rate limiting', async () => {
const url = `${BASE_URL}/rate_limit_test`
const requests_to_send = 100;
const requests_to_send = 200;
const promises = [];
for (let i = 0; i < requests_to_send; i++) {
promises.push(
Expand Down

0 comments on commit 32a8c28

Please sign in to comment.