File tree 2 files changed +5
-5
lines changed 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -50,8 +50,8 @@ export class BlockingProxyRunner {
50
50
51
51
process . on ( 'exit' , ( ) => {
52
52
this . bpProcess . kill ( ) ;
53
- } )
54
- } )
53
+ } ) ;
54
+ } ) ;
55
55
}
56
56
57
57
checkSupportedConfig ( ) {
Original file line number Diff line number Diff line change @@ -38,9 +38,9 @@ export class AttachSession extends DriverProvider {
38
38
* @return {WebDriver } webdriver instance
39
39
*/
40
40
getNewDriver ( ) : WebDriver {
41
- var httpClient = new http . HttpClient ( this . config_ . seleniumAddress ) ;
42
- var executor = new http . Executor ( httpClient ) ;
43
- var newDriver = WebDriver . attachToSession ( executor , this . config_ . seleniumSessionId ) ;
41
+ const httpClient = new http . HttpClient ( this . config_ . seleniumAddress ) ;
42
+ const executor = new http . Executor ( httpClient ) ;
43
+ const newDriver = WebDriver . attachToSession ( executor , this . config_ . seleniumSessionId ) ;
44
44
this . drivers_ . push ( newDriver ) ;
45
45
return newDriver ;
46
46
}
You can’t perform that action at this time.
0 commit comments