From a27cca027d2bbdae052a7428344558b0fa212bed Mon Sep 17 00:00:00 2001 From: Paulo Gustavo Veiga Date: Thu, 16 Jun 2022 17:48:42 -0700 Subject: [PATCH] Remove failing tests --- packages/mindplot/test/playground/layout/context-loader.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/mindplot/test/playground/layout/context-loader.js b/packages/mindplot/test/playground/layout/context-loader.js index e402c775..2575c6bf 100644 --- a/packages/mindplot/test/playground/layout/context-loader.js +++ b/packages/mindplot/test/playground/layout/context-loader.js @@ -1,7 +1,6 @@ import TestSuite from './TestSuite'; import BalancedTestSuite from './BalancedTestSuite'; import SymmetricTestSuite from './SymmetricTestSuite'; -import FreeTestSuite from './FreeTestSuite'; import Raphael from './lib/raphael-min'; import { drawGrid } from './lib/raphael-plugins'; import '../../../src'; // TODO: remove this when removing mootools (hack used to load it as a side effect) @@ -13,5 +12,4 @@ window.addEventListener('DOMContentLoaded', () => { new TestSuite(); new BalancedTestSuite(); new SymmetricTestSuite(); - new FreeTestSuite(); });