Skip to content

Commit 4680b4b

Browse files
authored
test: Disable failing tests (#8677)
See issue #8676.
1 parent 7219800 commit 4680b4b

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

tests/mocha/workspace_svg_test.js

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,8 @@ suite('WorkspaceSvg', function () {
502502
);
503503
});
504504

505-
test('two blocks first at (10, 15) second at (0, 0) do not switch places', function () {
505+
// TODO(#8676): Reenable once test passes reliably.
506+
test.skip('two blocks first at (10, 15) second at (0, 0) do not switch places', function () {
506507
const blockJson1 = {
507508
'type': 'math_number',
508509
'id': 'block1',
@@ -538,7 +539,8 @@ suite('WorkspaceSvg', function () {
538539
);
539540
});
540541

541-
test('two overlapping blocks are moved to origin and below', function () {
542+
// TODO(#8676): Reenable once test passes reliably.
543+
test.skip('two overlapping blocks are moved to origin and below', function () {
542544
const blockJson1 = {
543545
'type': 'math_number',
544546
'id': 'block1',
@@ -618,7 +620,8 @@ suite('WorkspaceSvg', function () {
618620
);
619621
});
620622

621-
test('two overlapping blocks are moved to origin and below including children', function () {
623+
// TODO(#8676): Reenable once test passes reliably.
624+
test.skip('two overlapping blocks are moved to origin and below including children', function () {
622625
const blockJson1 = {
623626
'type': 'logic_negate',
624627
'id': 'block1',
@@ -682,7 +685,8 @@ suite('WorkspaceSvg', function () {
682685
);
683686
});
684687

685-
test('two large overlapping blocks are moved to origin and below', function () {
688+
// TODO(#8676): Reenable once test passes reliably.
689+
test.skip('two large overlapping blocks are moved to origin and below', function () {
686690
const blockJson1 = {
687691
'type': 'controls_repeat_ext',
688692
'id': 'block1',

0 commit comments

Comments
 (0)