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.
26 lines
780 B
JavaScript
26 lines
780 B
JavaScript
import { acceptance } from "discourse/tests/helpers/qunit-helpers";
|
|
|
|
acceptance("User Drafts", { loggedIn: true });
|
|
|
|
QUnit.test("Stream", async (assert) => {
|
|
await visit("/u/eviltrout/activity/drafts");
|
|
assert.ok(find(".user-stream-item").length === 3, "has drafts");
|
|
|
|
await click(".user-stream-item:last-child .remove-draft");
|
|
assert.ok(
|
|
find(".user-stream-item").length === 2,
|
|
"draft removed, list length diminished by one"
|
|
);
|
|
});
|
|
|
|
QUnit.test("Stream - resume draft", async (assert) => {
|
|
await visit("/u/eviltrout/activity/drafts");
|
|
assert.ok(find(".user-stream-item").length > 0, "has drafts");
|
|
|
|
await click(".user-stream-item .resume-draft");
|
|
assert.equal(
|
|
find(".d-editor-input").val().trim(),
|
|
"A fun new topic for testing drafts."
|
|
);
|
|
});
|