/** * @author TristanVALCKE / https://github.com/Itee */ /* global QUnit */ import { PolarGridHelper } from '../../../../src/helpers/PolarGridHelper'; export default QUnit.module( 'Helpers', () => { QUnit.module( 'PolarGridHelper', () => { // INHERITANCE QUnit.todo( "Extending", ( assert ) => { assert.ok( false, "everything's gonna be alright" ); } ); // INSTANCING QUnit.todo( "Instancing", ( assert ) => { assert.ok( false, "everything's gonna be alright" ); } ); } ); } );