2021-12-02 00:41:56 +00:00
|
|
|
import TestSuite from './TestSuite';
|
|
|
|
import BalancedTestSuite from './BalancedTestSuite';
|
|
|
|
import SymmetricTestSuite from './SymmetricTestSuite';
|
|
|
|
import FreeTestSuite from './FreeTestSuite';
|
2021-12-05 09:25:16 -08:00
|
|
|
import Raphael from './lib/raphael-min';
|
|
|
|
import { drawGrid } from './lib/raphael-plugins';
|
2021-12-13 21:30:37 +00:00
|
|
|
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;
|
2021-12-02 00:41:56 +00:00
|
|
|
|
|
|
|
window.addEventListener('DOMContentLoaded', () => {
|
2021-12-19 08:06:42 -08:00
|
|
|
new TestSuite();
|
|
|
|
new BalancedTestSuite();
|
|
|
|
new SymmetricTestSuite();
|
|
|
|
new FreeTestSuite();
|
2021-12-02 00:41:56 +00:00
|
|
|
});
|