FIX: Hide bootbox after a negative answer (#10028)

Starting to reply and then editing a post was not possible because of a
bootbox which kept showing up.
This commit is contained in:
Bianca Nenciu
2020-06-12 14:48:45 +03:00
committed by GitHub
parent 4b793a1072
commit 60196cc192
2 changed files with 22 additions and 2 deletions

View File

@ -271,6 +271,24 @@ QUnit.test("Create a Reply", async assert => {
);
});
QUnit.test("Can edit a post after starting a reply", async assert => {
await visit("/t/internationalization-localization/280");
await click("#topic-footer-buttons .create");
await fillIn(".d-editor-input", "this is the content of my reply");
await click(".topic-post:eq(0) button.show-more-actions");
await click(".topic-post:eq(0) button.edit");
await click("a[data-handler='0']");
assert.ok(!visible(".bootbox.modal"));
assert.equal(
find(".d-editor-input").val(),
"this is the content of my reply"
);
});
QUnit.test("Posting on a different topic", async assert => {
await visit("/t/internationalization-localization/280");
await click("#topic-footer-buttons .btn.create");