Closes the menu.
()
| 85 | |
| 86 | /** Closes the menu. */ |
| 87 | async close(): Promise<void> { |
| 88 | const panel = await this._getMenuPanel(); |
| 89 | if (panel) { |
| 90 | return panel.click(); |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | /** |
| 95 | * Gets a list of `MatMenuItemHarness` representing the items in the menu. |
no test coverage detected