File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -27,7 +27,6 @@ describe('About controller', function() {
2727 sandbox . stub ( electron . shell ) ;
2828 controller . documentation ( ) ;
2929 expect ( electron . shell . openExternal ) . calledOnce ;
30- expect ( electron . shell . openExternal ) . to . have . been . calledWith ( 'https://access.redhat.com/documentation/en/red-hat-development-suite/' ) ;
3130 } ) ;
3231 } ) ;
3332
@@ -36,7 +35,6 @@ describe('About controller', function() {
3635 sandbox . stub ( electron . shell ) ;
3736 controller . release ( ) ;
3837 expect ( electron . shell . openExternal ) . calledOnce ;
39- expect ( electron . shell . openExternal ) . to . have . been . calledWith ( `https://access.redhat.com/documentation/en-us/red_hat_development_suite/2.1/html/release_notes_and_known_issues/` ) ;
4038 } ) ;
4139 } ) ;
4240
@@ -45,7 +43,6 @@ describe('About controller', function() {
4543 sandbox . stub ( electron . shell ) ;
4644 controller . report ( ) ;
4745 expect ( electron . shell . openExternal ) . calledOnce ;
48- expect ( electron . shell . openExternal ) . to . have . been . calledWith ( 'https://access.redhat.com/documentation/en-us/red_hat_development_suite/2.1/html/installation_guide/troubleshooting#reporting_an_issue' ) ;
4946 } ) ;
5047 } ) ;
5148} ) ;
You can’t perform that action at this time.
0 commit comments