File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed
Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " texei-sfdx-plugin" ,
33 "description" : " Texeï's plugin for sfdx" ,
4- "version" : " 2.8.0 " ,
4+ "version" : " 2.8.1 " ,
55 "author" : " Texeï" ,
66 "bugs" : " https://github.com/texei/texei-sfdx-plugin/issues" ,
77 "type" : " module" ,
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ export default class Enable extends SfCommand<SharedactivitiesEnableResult> {
6666 } ) ;
6767 const page = await browser . newPage ( ) ;
6868 await page . goto ( `${ instanceUrl } /secur/frontdoor.jsp?sid=${ accessToken } ` , {
69- waitUntil : [ 'domcontentloaded' , 'networkidle0 ' ] ,
69+ waitUntil : [ 'domcontentloaded' , 'networkidle2 ' ] ,
7070 } ) ;
7171
7272 const navigationPromise = page . waitForNavigation ( ) ;
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ export default class Recalculate extends SfCommand<SharingcalcRecalculateResult>
7070 const page = await browser . newPage ( ) ;
7171 await page . goto (
7272 `${ instanceUrl } /secur/frontdoor.jsp?sid=${ flags [ 'target-org' ] . getConnection ( flags [ 'api-version' ] ) . accessToken } ` ,
73- { waitUntil : [ 'domcontentloaded' , 'networkidle0 ' ] }
73+ { waitUntil : [ 'domcontentloaded' , 'networkidle2 ' ] }
7474 ) ;
7575 const navigationPromise = page . waitForNavigation ( ) ;
7676
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ export default class Resume extends SfCommand<SharingcalcResumeResult> {
9595 const page = await browser . newPage ( ) ;
9696 await page . goto (
9797 `${ instanceUrl } /secur/frontdoor.jsp?sid=${ flags [ 'target-org' ] . getConnection ( flags [ 'api-version' ] ) . accessToken } ` ,
98- { waitUntil : [ 'domcontentloaded' , 'networkidle0 ' ] }
98+ { waitUntil : [ 'domcontentloaded' , 'networkidle2 ' ] }
9999 ) ;
100100 const navigationPromise = page . waitForNavigation ( ) ;
101101
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ export default class Suspend extends SfCommand<SharingcalcSuspendResult> {
9696 const page = await browser . newPage ( ) ;
9797 await page . goto (
9898 `${ instanceUrl } /secur/frontdoor.jsp?sid=${ flags [ 'target-org' ] . getConnection ( flags [ 'api-version' ] ) . accessToken } ` ,
99- { waitUntil : [ 'domcontentloaded' , 'networkidle0 ' ] }
99+ { waitUntil : [ 'domcontentloaded' , 'networkidle2 ' ] }
100100 ) ;
101101 const navigationPromise = page . waitForNavigation ( ) ;
102102
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ export class StandardValueSetHelper {
4141 this . page = await this . browser . newPage ( ) ;
4242
4343 await this . page . goto ( `${ this . _connection . instanceUrl } /secur/frontdoor.jsp?sid=${ this . _connection . accessToken } ` , {
44- waitUntil : [ 'domcontentloaded' , 'networkidle0 ' ] ,
44+ waitUntil : [ 'domcontentloaded' , 'networkidle2 ' ] ,
4545 } ) ;
4646
4747 this . navigationPromise = this . page . waitForNavigation ( ) ;
You can’t perform that action at this time.
0 commit comments