mirror of
https://github.com/discourse/discourse.git
synced 2025-06-25 01:30:17 +08:00
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:
@ -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");
|
||||
|
Reference in New Issue
Block a user