Skip to content

Commit

Permalink
chore: fix menu e2e test failure
Browse files Browse the repository at this point in the history
Fixes an e2e test that is failing after angular#9383.
  • Loading branch information
crisbeto committed Jan 23, 2018
1 parent 78f49df commit 9d3342a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions e2e/components/menu-e2e.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ describe('menu', () => {
expectFocusOn(page.items(0));
});

it('should focus the panel when opened by mouse', () => {
it('should focus the first item when opened by mouse', () => {
page.trigger().click();
expectFocusOn(page.menu());
expectFocusOn(page.items(0));
});

it('should focus subsequent items when down arrow is pressed', () => {
Expand Down

0 comments on commit 9d3342a

Please sign in to comment.