Skip to content

Commit f0d4c52

Browse files
committed
fix: tests
Signed-off-by: Pamfilos Fokianos <pamfilosf@gmail.com>
1 parent b00a39b commit f0d4c52

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

formule-demo/cypress/e2e/builder.cy.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -995,13 +995,17 @@ describe("test basic functionality", () => {
995995
.should("exist")
996996
.click();
997997

998-
cy.get(`input#root${SEP}oneOf${SEP}3${SEP}const`).clearTypeBlur("25");
998+
cy.get(`input#root${SEP}oneOf${SEP}3${SEP}const`).clearTypeBlur("25", {
999+
force: true,
1000+
});
9991001
cy.get(`input#root${SEP}oneOf${SEP}3${SEP}title`).clearTypeBlur("Small");
10001002

10011003
cy.get(`fieldset#root${SEP}oneOf`)
10021004
.find('[data-cy="addItemButton"]')
10031005
.click();
1004-
cy.get(`input#root${SEP}oneOf${SEP}4${SEP}const`).clearTypeBlur("100");
1006+
cy.get(`input#root${SEP}oneOf${SEP}4${SEP}const`).clearTypeBlur("100", {
1007+
force: true,
1008+
});
10051009

10061010
// marks and interaction
10071011
cy.getByDataCy("formPreview")

0 commit comments

Comments
 (0)