Skip to content
This repository was archived by the owner on Jul 29, 2024. It is now read-only.

Commit 3e937f2

Browse files
committed
Update to BlockingProxy 0.0.3, which allows changing rootSelector.
This will fail until 0.0.3 is published.
1 parent 0be0d03 commit 3e937f2

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Diff for: lib/bpRunner.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ export class BlockingProxyRunner {
1919
this.checkSupportedConfig();
2020

2121
let args = [
22-
'--fork', '--seleniumAddress', this.config.seleniumAddress,
22+
'--fork',
23+
'--seleniumAddress',
24+
this.config.seleniumAddress,
2325
];
2426
this.bpProcess = fork(BP_PATH, args, {silent: true});
2527
logger.info('Starting BlockingProxy with args: ' + args.toString());

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"@types/node": "^6.0.46",
1616
"@types/q": "^0.0.32",
1717
"@types/selenium-webdriver": "~2.53.39",
18-
"blocking-proxy": "0.0.2",
18+
"blocking-proxy": "0.0.3",
1919
"chalk": "^1.1.3",
2020
"glob": "^7.0.3",
2121
"jasmine": "2.4.1",

0 commit comments

Comments
 (0)