DEV: Add test for opening drafts from Activity screen (#8401)

Follow-up to 520d54d85f.
This commit is contained in:
Dan Ungureanu 2019-11-25 14:31:47 +02:00 committed by GitHub
parent c75ebfee57
commit 60ccfcaa6c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

View File

@ -12,3 +12,11 @@ QUnit.test("Stream", async assert => {
"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(), "dum de dum da ba.");
});