Skip to content

Commit

Permalink
test(popup-menu): remove unneeded log statements
Browse files Browse the repository at this point in the history
  • Loading branch information
nikku committed May 29, 2018
1 parent b205eb5 commit 33d8210
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions test/spec/features/popup-menu/PopupMenuSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -317,8 +317,6 @@ describe('features/popup', function() {
popupMenu.open({}, 'menu', { x: 100, y: 100 });

// then
console.log(popupMenu._current);

expect(popupMenu._current).to.exist;
expect(popupMenu._current.headerEntries[0].id).to.eql('entry1');
expect(popupMenu._current.entries[0].id).to.eql('entry2');
Expand All @@ -337,8 +335,6 @@ describe('features/popup', function() {
popupMenu.open({}, 'better-menu', { x: 100, y: 100 });

// then
console.log(popupMenu._current);

expect(popupMenu._current).to.exist;
expect(popupMenu._current.headerEntries[0].id).to.eql('entryA');
expect(popupMenu._current.entries[0].id).to.eql('entryB');
Expand Down

0 comments on commit 33d8210

Please sign in to comment.