Skip to content

Commit 722a9a2

Browse files
author
Emmanouil Konstantinidis
committed
Fix tests
1 parent 252665b commit 722a9a2

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/js/__tests__/components/navigation.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ describe('Test for Navigation', function () {
5050
expect(instance.refreshNotifications).toBeDefined();
5151
expect(instance.refreshDone).toBeDefined();
5252
expect(instance.logOut).toBeDefined();
53-
expect(instance.appQuit).toBeDefined();
5453

5554
var logoutIcon = TestUtils.scryRenderedDOMComponentsWithClass(instance, 'fa-sign-out');
5655
expect(logoutIcon.length).toBe(0);
@@ -72,7 +71,6 @@ describe('Test for Navigation', function () {
7271
expect(instance.refreshNotifications).toBeDefined();
7372
expect(instance.refreshDone).toBeDefined();
7473
expect(instance.logOut).toBeDefined();
75-
expect(instance.appQuit).toBeDefined();
7674

7775
var logoutIcon = TestUtils.scryRenderedDOMComponentsWithClass(instance, 'fa-sign-out');
7876
expect(logoutIcon.length).toBe(1);
@@ -88,9 +86,6 @@ describe('Test for Navigation', function () {
8886
instance.refreshDone();
8987
expect(instance.state.loading).toBeFalsy();
9088

91-
// Quit Application
92-
instance.appQuit();
93-
9489
});
9590

9691
it('Should test the refreshNotifications method', function () {

0 commit comments

Comments
 (0)