Skip to content

Commit

Permalink
fix legacy-api-tests (#2789)
Browse files Browse the repository at this point in the history
  • Loading branch information
miherlosev authored Jul 29, 2022
1 parent 62529c3 commit 04cc717
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "testcafe-hammerhead",
"description": "A powerful web-proxy used as a core for the TestCafe testing framework (https://github.com/DevExpress/testcafe).",
"version": "24.7.0",
"version": "24.7.1",
"homepage": "https://github.com/DevExpress/testcafe-hammerhead",
"bugs": {
"url": "https://github.com/DevExpress/testcafe-hammerhead/issues"
Expand Down
6 changes: 6 additions & 0 deletions src/client/transport/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,13 @@ export default class Transport {
return this._implementation.queuedAsyncServiceMsg(msg);
}

// NOTE: for testcafe-legacy-api
batchUpdate (): Promise<any> {
return this._implementation.batchUpdate();
}

// NOTE: for testcafe-legacy-api
waitForServiceMessagesCompleted (timeout: number): Promise<void> {
return this._implementation.waitForServiceMessagesCompleted(timeout);
}
}

0 comments on commit 04cc717

Please sign in to comment.