Skip to content
Snippets Groups Projects
Commit e94f58bb authored by Sascha Herzinger's avatar Sascha Herzinger
Browse files

making CI happy

parent 97e58bf8
No related branches found
No related tags found
2 merge requests!630WIP: Resolve "The privileges of a new user are not saved in some cases",!596Resolve "Report bug utility issues"
Pipeline #8481 passed
......@@ -34,7 +34,9 @@ describe('GuiConnector', function () {
var connector = new (GuiConnector.constructor)();
connector.alert("some error");
$(".ui-dialog-content").each(function () {
assert.ok($(this).dialog('isOpen'));
var dialog = $(this);
assert.ok(dialog.dialog('isOpen'));
dialog.dialog('close').remove();
});
connector.destroy();
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment