Skip to content

Commit 66fee50

Browse files
committed
test: increase timeout for contenteditable tests
1 parent a42748d commit 66fee50

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/visualBuilder/__test__/index.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ describe("Visual builder", () => {
194194
expect(h1).toHaveAttribute("contenteditable");
195195
expect(h1).toHaveAttribute("data-cslp-field-type", "singleline");
196196
})
197-
}, { timeout: 20 * 1000 });
197+
}, { timeout: 40 * 1000 });
198198

199199
test("multi line should be contenteditable", async () => {
200200
h1.setAttribute(
@@ -207,7 +207,7 @@ describe("Visual builder", () => {
207207
expect(h1).toHaveAttribute("contenteditable");
208208
expect(h1).toHaveAttribute("data-cslp-field-type", "multiline");
209209
})
210-
}, { timeout: 20 * 1000 });
210+
}, { timeout: 40 * 1000 });
211211

212212
});
213213
});

0 commit comments

Comments
 (0)