Skip to content

Commit

Permalink
fix test for #6022 (#6073)
Browse files Browse the repository at this point in the history
  • Loading branch information
novikov82 authored Nov 18, 2024
1 parent ed7fe8f commit 19ff483
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions functionalTests/designer/surface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -396,9 +396,10 @@ test("Check page adorner state is restored after shrink and stretch", async (t)
await t.resizeWindow(1920, 1080);
await t.expect(Selector(".svc-page__content-actions #duplicate .svc-page-toolbar-item__title--with-icon").visible).ok();
});
test.skip("Popup position", async (t) => {
test("Popup position", async (t) => {
const setCreatorTop = ClientFunction((top) => {
const el = document.querySelector(".svc-creator") as HTMLElement;
var el = document.getElementById("survey-creator");
if (!el) el = document.querySelector(".svc-creator") as HTMLElement; // for angular app
el.style.marginTop = top;
});
await setCreatorTop("200px");
Expand Down

0 comments on commit 19ff483

Please sign in to comment.