Skip to content

Commit

Permalink
Regen snapshots | Fixes liferay#832
Browse files Browse the repository at this point in the history
  • Loading branch information
Carlos Lancha committed Apr 24, 2018
1 parent 2ec3f50 commit 193e194
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,22 @@ exports[`ClayDropdownBase should render a dropdown with items of type item and d
</div>
`;
exports[`ClayDropdownBase should render a dropdown with items of type item with title 1`] = `
<div class="dropdown">
<button aria-expanded="false" aria-haspopup="true" aria-label="toggle" class="dropdown-toggle btn btn-unstyled" type="button">Trigger</button>
</div>
<div class="dropdown-menu" ref="menu">
<ul class="list-unstyled">
<li>
<a class=" dropdown-item" href="item1url" title="title1">Item 1</a>
</li>
<li>
<a class=" dropdown-item" href="item2url" title="title2">Item 2</a>
</li>
</ul>
</div>
`;
exports[`ClayDropdownBase should render a dropdown with items of type radio 1`] = `
<div class="dropdown">
<button aria-expanded="false" aria-haspopup="true" aria-label="toggle" class="dropdown-toggle btn btn-unstyled" type="button">Trigger Label</button>
Expand Down

0 comments on commit 193e194

Please sign in to comment.