Skip to content

Commit 3e993ca

Browse files
committed
Fix unit tests for About dialog
1 parent ae31c24 commit 3e993ca

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

test/unit/pages/about/controller-test.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff 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
});

0 commit comments

Comments
 (0)