Skip to content

Commit 0d94a41

Browse files
committed
Merge main to develop
2 parents 2772344 + 95469b6 commit 0d94a41

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

packages/form-js-playground/test/spec/JSONEditor.spec.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,8 @@ describe('JSONEditor', function () {
249249
});
250250
});
251251

252-
it('should suggest array value completions', async function () {
252+
// Find out why it's flaky on the CI: https://github.com/bpmn-io/form-js/issues/1373
253+
it.skip('should suggest array value completions', async function () {
253254
// given
254255
const initialValue = '[ ]';
255256
const editor = new JSONEditor();
@@ -281,7 +282,8 @@ describe('JSONEditor', function () {
281282
});
282283
});
283284

284-
it('should suggest property completion after opening brace', async function () {
285+
// Find out why it's flaky on the CI: https://github.com/bpmn-io/form-js/issues/1373
286+
it.skip('should suggest property completion after opening brace', async function () {
285287
// given
286288
const initialValue = '{';
287289
const variables = ['foobar', 'baz'];

0 commit comments

Comments
 (0)