DEV: Update tests
This commit is contained in:
parent
9b59f6eeea
commit
8e078d2bc9
|
@ -0,0 +1,34 @@
|
|||
import { acceptance, exists } from "discourse/tests/helpers/qunit-helpers";
|
||||
import { click, visit } from "@ember/test-helpers";
|
||||
import { test } from "qunit";
|
||||
import { clearPopupMenuOptionsCallback } from "discourse/controllers/composer";
|
||||
import selectKit from "discourse/tests/helpers/select-kit-helper";
|
||||
|
||||
acceptance("Table Builder", function (needs) {
|
||||
needs.user();
|
||||
needs.hooks.beforeEach(() => clearPopupMenuOptionsCallback());
|
||||
|
||||
test("Can see table builder button when creating a topic", async function (assert) {
|
||||
await visit("/");
|
||||
await click("#create-topic");
|
||||
await click(".d-editor-button-bar .options");
|
||||
await selectKit(".toolbar-popup-menu-options").expand();
|
||||
assert.ok(
|
||||
exists(".select-kit-row[data-value='showTableBuilder']"),
|
||||
"it shows the builder button"
|
||||
);
|
||||
});
|
||||
|
||||
test("Can see table builder button when editing post", async function (assert) {
|
||||
await visit("/t/internationalization-localization/280");
|
||||
await click("#post_1 .show-more-actions");
|
||||
await click("#post_1 .edit");
|
||||
assert.ok(exists("#reply-control"));
|
||||
await click(".d-editor-button-bar .options");
|
||||
await selectKit(".toolbar-popup-menu-options").expand();
|
||||
assert.ok(
|
||||
exists(".select-kit-row[data-value='showTableBuilder']"),
|
||||
"it shows the builder button"
|
||||
);
|
||||
});
|
||||
});
|
|
@ -1,32 +0,0 @@
|
|||
import { acceptance, exists } from "discourse/tests/helpers/qunit-helpers";
|
||||
import { click, visit } from "@ember/test-helpers";
|
||||
import { test } from "qunit";
|
||||
|
||||
acceptance("Table Builder", function (needs) {
|
||||
needs.user();
|
||||
|
||||
test("Can open table builder when creating a topic", async function (assert) {
|
||||
await visit("/");
|
||||
await click("#create-topic");
|
||||
click(".table-builder");
|
||||
assert.ok(exists(".table-builder-modal"));
|
||||
});
|
||||
|
||||
test("Can build table", async function (assert) {
|
||||
await visit("/");
|
||||
await click("#create-topic");
|
||||
click(".btn-build-table");
|
||||
assert.ok(exists(".d-editor-preview .md-table"));
|
||||
});
|
||||
|
||||
test("Can build table when editing post", async function (assert) {
|
||||
await visit("/t/internationalization-localization/280");
|
||||
await click("#post_1 .show-more-actions");
|
||||
await click("#post_1 .edit");
|
||||
assert.ok(exists("#reply-control"));
|
||||
click(".table-builder");
|
||||
assert.ok(exists(".table-builder-modal"));
|
||||
click(".btn-build-table");
|
||||
assert.ok(exists(".d-editor-preview .md-table"));
|
||||
});
|
||||
});
|
Loading…
Reference in New Issue