mirror of
https://github.com/odoo/owl.git
synced 2025-10-06 19:59:41 +07:00
36 lines
971 B
Plaintext
36 lines
971 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`can be rendered 1`] = `
|
|
"<div class=\\"o_navbar\\">
|
|
<a aria-label=\\"Applications\\" class=\\"o_title fa fa-th\\" href=\\"#\\" title=\\"Applications\\" accesskey=\\"h\\"></a>
|
|
<ul>
|
|
|
|
|
|
</ul>
|
|
</div>"
|
|
`;
|
|
|
|
exports[`can render one menu item 1`] = `
|
|
"<div class=\\"o_navbar\\">
|
|
<a aria-label=\\"Applications\\" class=\\"o_title fa fa-th\\" href=\\"#\\" title=\\"Applications\\" accesskey=\\"h\\"></a>
|
|
<ul>
|
|
<li>
|
|
<a href=\\"\\">
|
|
menu
|
|
</a>
|
|
</li>
|
|
|
|
</ul>
|
|
</div>"
|
|
`;
|
|
|
|
exports[`mobile mode: navbar is different 1`] = `
|
|
"<div class=\\"o_navbar\\">
|
|
<a aria-label=\\"Applications\\" class=\\"o_title fa fa-th\\" href=\\"#\\" title=\\"Applications\\" accesskey=\\"h\\"></a>
|
|
<ul>
|
|
|
|
<li>MOBILEMODE</li>
|
|
</ul>
|
|
</div>"
|
|
`;
|