2019-06-06 04:47:10 -04:00
|
|
|
import selectKit from "discourse/tests/helpers/select-kit-helper";
|
2021-06-09 10:58:55 -04:00
|
|
|
import { click, visit } from "@ember/test-helpers";
|
2019-06-06 04:47:10 -04:00
|
|
|
|
2020-02-03 08:22:14 -05:00
|
|
|
export async function displayPollBuilderButton() {
|
|
|
|
await visit("/");
|
|
|
|
await click("#create-topic");
|
|
|
|
await click(".d-editor-button-bar .options");
|
|
|
|
await selectKit(".toolbar-popup-menu-options").expand();
|
2017-12-04 08:47:11 -05:00
|
|
|
}
|