Skip to content

Commit dce0072

Browse files
authored
Merge pull request #61 from kirovboris/remove_client_async
chore: remove client async module
2 parents 9356183 + d4c62bd commit dce0072

5 files changed

Lines changed: 32 additions & 6062 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "testcafe-legacy-api",
3-
"version": "5.1.3",
3+
"version": "5.1.4",
44
"description": "Legacy API support for TestCafe",
55
"main": "lib/index.js",
66
"scripts": {

src/client/api/actions/actions.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import {
1414
import { getAutomations } from '../../automation-storage';
1515
import SETTINGS from '../../settings';
1616
import * as sourceIndexTracker from '../../source-index';
17-
import async from '../../deps/async';
17+
import forEachSeries from '../../deps/for-each-series';
1818
import * as sandboxedJQuery from '../../sandboxed-jquery';
1919
import ERROR_TYPE from '../../../test-run-error/type';
2020
import isJQueryObj from 'is-jquery-obj';
@@ -208,7 +208,7 @@ function actionArgumentsIterator (actionName) {
208208
failWithError(ERROR_TYPE.emptyFirstArgument, { action: actionName });
209209
}
210210
else {
211-
async.forEachSeries(
211+
forEachSeries(
212212
items,
213213
function (item, seriaCallback) {
214214
iterate(item, seriaCallback);

0 commit comments

Comments
 (0)