mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-11 12:30:18 +00:00
Create tests for some, someLimit, someSeries
This commit is contained in:
@@ -39,3 +39,7 @@ async.forEachOfSeries(funcCollection(), eachOfIterator, function (err: Error) {
|
||||
async.every(funcCollection(), funcCbErrBoolean, function (err: Error, res: boolean) { })
|
||||
async.everyLimit(funcCollection(), 2, funcCbErrBoolean, function (err: Error, res: boolean) { })
|
||||
async.everySeries(funcCollection(), funcCbErrBoolean, function (err: Error, res: boolean) { })
|
||||
|
||||
async.some(funcCollection(), funcCbErrBoolean, function (err: Error, res: boolean) { })
|
||||
async.someLimit(funcCollection(), 2, funcCbErrBoolean, function (err: Error, res: boolean) { })
|
||||
async.someSeries(funcCollection(), funcCbErrBoolean, function (err: Error, res: boolean) { })
|
||||
|
||||
Reference in New Issue
Block a user