FIX: Fixed edit category description redirecting without saving (#7192)

This commit is contained in:
Tim Lange
2019-03-18 16:14:17 +01:00
committed by Régis Hanol
parent 298f18cf70
commit 22c75e1c04
3 changed files with 17 additions and 2 deletions

View File

@@ -40,6 +40,21 @@ QUnit.test("Editing the category", async assert => {
);
});
QUnit.test("Edit the description without loosing progress", async assert => {
let win = { focus: function() {} };
let windowOpen = sandbox.stub(window, "open").returns(win);
sandbox.stub(win, "focus");
await visit("/c/bug");
await click(".edit-category");
await click(".edit-category-description");
assert.ok(
windowOpen.calledWith("/t/category-definition-for-bug/2", "_blank"),
"opens the category topic in a new tab"
);
});
QUnit.test("Error Saving", async assert => {
await visit("/c/bug");