mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-11 09:53:24 +01:00
18 lines
608 B
JavaScript
18 lines
608 B
JavaScript
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)
|
|
|
|
global.Raphael = Raphael;
|
|
global.Raphael.fn.drawGrid = drawGrid;
|
|
|
|
window.addEventListener('DOMContentLoaded', () => {
|
|
new TestSuite();
|
|
new BalancedTestSuite();
|
|
new SymmetricTestSuite();
|
|
new FreeTestSuite();
|
|
});
|