Skip to content

Commit

Permalink
test: Disable failing tests
Browse files Browse the repository at this point in the history
See issue #8676.
  • Loading branch information
cpcallen committed Nov 28, 2024
1 parent 6f3f884 commit 9b27db5
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions tests/mocha/workspace_svg_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,8 @@ suite('WorkspaceSvg', function () {
);
});

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

test('two overlapping blocks are moved to origin and below', function () {
// TODO(#8676): Reenable once test passes reliably.
test.skip('two overlapping blocks are moved to origin and below', function () {
const blockJson1 = {
'type': 'math_number',
'id': 'block1',
Expand Down Expand Up @@ -618,7 +620,8 @@ suite('WorkspaceSvg', function () {
);
});

test('two overlapping blocks are moved to origin and below including children', function () {
// TODO(#8676): Reenable once test passes reliably.
test.skip('two overlapping blocks are moved to origin and below including children', function () {
const blockJson1 = {
'type': 'logic_negate',
'id': 'block1',
Expand Down Expand Up @@ -682,7 +685,8 @@ suite('WorkspaceSvg', function () {
);
});

test('two large overlapping blocks are moved to origin and below', function () {
// TODO(#8676): Reenable once test passes reliably.
test.skip('two large overlapping blocks are moved to origin and below', function () {
const blockJson1 = {
'type': 'controls_repeat_ext',
'id': 'block1',
Expand Down

0 comments on commit 9b27db5

Please sign in to comment.