Skip to content

Commit

Permalink
Update request-ids.test.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacroldan authored Dec 17, 2024
1 parent 7f56b5d commit 0f9925a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli-kit/src/private/node/request-ids.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ describe('RequestIDCollection', () => {

test('limits collection to MAX_REQUEST_IDS', () => {
// When
for (let i = 0; i < 120; i++) {
for (let i = 0; i < MAX_REQUEST_IDS + 20; i++) {

Check failure on line 34 in packages/cli-kit/src/private/node/request-ids.test.ts

View workflow job for this annotation

GitHub Actions / ESLint Report Analysis

packages/cli-kit/src/private/node/request-ids.test.ts#L34

[prettier/prettier] Insert `·`
requestIdsCollection.addRequestId(`request-${i}`)
}

Expand Down

0 comments on commit 0f9925a

Please sign in to comment.