Whether the menu is a menu bar.
()
| 113 | |
| 114 | /** Whether the menu is a menu bar. */ |
| 115 | async isMenuBar(): Promise<boolean> { |
| 116 | const host = await this.host(); |
| 117 | return host.matchesSelector('[ngMenuBar]'); |
| 118 | } |
| 119 | |
| 120 | /** Opens the menu if it is currently closed. */ |
| 121 | async open(): Promise<void> { |
no test coverage detected