diff --git a/src/pat/structure/structure.test.js b/src/pat/structure/structure.test.js index 4866b5e26..c640e4413 100644 --- a/src/pat/structure/structure.test.js +++ b/src/pat/structure/structure.test.js @@ -727,5 +727,11 @@ describe("Structure", function () { it("text drag and drop ordering", async function() { registry.scan(this.$el); await utils.timeout(100); + + // check for "order-support" wrapper class + // this would have prevented issue https://github.com/plone/mockup/pull/1371 + expect(this.$el.find(".order-support").length).toEqual(1) + + // XXX: actually simulate mousedown/move/up somehow }); });