16 lines
540 B
JavaScript
Raw Normal View History

import TestSuite from './TestSuite';
import BalancedTestSuite from './BalancedTestSuite';
import SymmetricTestSuite from './SymmetricTestSuite';
2021-12-05 09:25:16 -08:00
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)
2021-12-05 09:25:16 -08:00
global.Raphael = Raphael;
global.Raphael.fn.drawGrid = drawGrid;
window.addEventListener('DOMContentLoaded', () => {
2021-12-19 08:06:42 -08:00
new TestSuite();
new BalancedTestSuite();
new SymmetricTestSuite();
});