mediawiki-skins-Vector/tests/jest/skins.vector.js/__snapshots__/dropdownMenus.test.js.snap
bwang 6a57506ae8 Separate vector-menu classes from Dropdowns
Bug: T319358
Change-Id: Idf05c1664c026f58487ba34af5ede8a11e695baf
2023-06-27 10:14:29 -05:00

28 lines
626 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`addPortletLinkHandler Adds a span with icon class to menus 1`] = `
"
<ul class=\\"vector-menu\\">
<li class=\\"mw-list-item mw-list-item-js\\" id=\\"test-id\\">
<a href=\\"#test-href\\">
<span>
test link content
</span>
</a>
</li>
</ul>"
`;
exports[`addPortletLinkHandler Does not add an icon when noicon class is present 1`] = `
"
<ul class=\\"vector-menu\\">
<li class=\\"mw-list-item mw-list-item-js\\" id=\\"test-id\\">
<a href=\\"#test-href\\">
<span>
test link content
</span>
</a>
</li>
</ul>"
`;