mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-05 15:59:29 +08:00
This commit replaces the `toolbar-popup-menu-options`, which used `select-kit` with a new implementation using `dmenu`. --------- Co-authored-by: Renato Atilio <renato@discourse.org> Co-authored-by: Martin Brennan <martin@discourse.org>
7 lines
207 B
JavaScript
7 lines
207 B
JavaScript
import { click, visit } from "@ember/test-helpers";
|
|
|
|
export async function displayPollBuilderButton() {
|
|
await visit("/");
|
|
await click("#create-topic");
|
|
await click(".toolbar-menu__options-trigger");
|
|
}
|