We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc33c75 commit dffa890Copy full SHA for dffa890
1 file changed
test/helpers.ts
@@ -257,7 +257,7 @@ export async function waitForBulkActionV2Processing<T extends BulkActionV2Payloa
257
* Executes an array of promises sequentially, waiting for each one to complete
258
* before starting the next one. This is useful for rate limiting or when you need
259
* to avoid overwhelming an API with concurrent requests.
260
- *
+ *
261
* @param promises Array of promises to execute sequentially
262
* @returns Promise that resolves to an array of results in the same order
263
*/
@@ -267,4 +267,4 @@ export async function promiseAllSequential<T>(promises: Promise<T>[]): Promise<T
267
results.push(await promise)
268
}
269
return results
270
-}
+}
0 commit comments