mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 23:33:54 +08:00
23f24bfb51
This is where they should be as far as ember is concerned. Note this is a huge commit and we should be really careful everything continues to work properly.
9 lines
280 B
JavaScript
9 lines
280 B
JavaScript
import selectKit from "discourse/tests/helpers/select-kit-helper";
|
|
|
|
export async function displayPollBuilderButton() {
|
|
await visit("/");
|
|
await click("#create-topic");
|
|
await click(".d-editor-button-bar .options");
|
|
await selectKit(".toolbar-popup-menu-options").expand();
|
|
}
|