Skip to content

Commit

Permalink
test error fix update
Browse files Browse the repository at this point in the history
  • Loading branch information
amusso01 committed Mar 12, 2018
1 parent 19fd33c commit cba4103
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ describe('CounterWidget component', () => {
it('Test CounterWidget DropdownMenu', () => {
ReactDOM.render(<CounterWidget />, document.getElementById("container"));
const container = document.getElementById('container');
const el = container.querySelectorAll('.dropdown-menu dropdown-menu-right li');
expect(el).toEqual(2);
const el = container.querySelectorAll('.dropdown-menu li');
expect(el.length).toEqual(2);
});
});

0 comments on commit cba4103

Please sign in to comment.