Skip to content

Commit

Permalink
chore: fix menu e2e test failure (angular#9549)
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 authored and jelbourn committed Jan 29, 2018
1 parent 008f500 commit a506353
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 a506353

Please sign in to comment.