mirror of
https://github.com/odoo/owl.git
synced 2025-10-06 19:59:41 +07:00
46 lines
1.2 KiB
Plaintext
46 lines
1.2 KiB
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`can be rendered (in home menu, no app) 1`] = `
|
|
"<div class=\\"o_navbar o_in_home\\">
|
|
|
|
|
|
</div>"
|
|
`;
|
|
|
|
exports[`can be rendered (in home menu, one active app) 1`] = `
|
|
"<div class=\\"o_navbar o_in_home\\">
|
|
<a aria-label=\\"Applications\\" class=\\"o_title fa fa-chevron-left\\" href=\\"#\\" title=\\"Applications\\" accesskey=\\"h\\"></a>
|
|
|
|
</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>
|
|
|
|
<a class=\\"o_menu_brand\\" href=\\"\\" role=\\"button\\">
|
|
Discuss
|
|
</a>
|
|
<ul class=\\"o_menu_sections\\">
|
|
|
|
|
|
</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>
|
|
|
|
<a class=\\"o_menu_brand\\" href=\\"\\" role=\\"button\\">
|
|
Notes
|
|
</a>
|
|
<ul class=\\"o_menu_sections\\">
|
|
|
|
<li>MOBILEMODE</li>
|
|
</ul>
|
|
|
|
</div>"
|
|
`;
|