Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion __test__/cjs/features/dynamic-sizing.test.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ describe('GenericObjectPool - Dynamic Sizing', () => {
const initialSize = pool.size

// Create concurrent demand to trigger scale-up
await Promise.all(
await Promise.allSettled(
Array.from({ length: 5 }, () =>
pool.acquireAsync(500).then((resource) => {
pool.release(resource)
Expand Down
2 changes: 1 addition & 1 deletion __test__/mjs/features/dynamic-sizing.test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ describe('GenericObjectPool - Dynamic Sizing', () => {
const initialSize = pool.size

// Create concurrent demand to trigger scale-up
await Promise.all(
await Promise.allSettled(
Array.from({ length: 5 }, () =>
pool.acquireAsync(500).then((resource) => {
pool.release(resource)
Expand Down
Loading