/** * @author TristanVALCKE / https://github.com/Itee */ /* global QUnit */ import { ShapeUtils } from '../../../../src/extras/ShapeUtils'; export default QUnit.module( 'Extras', () => { QUnit.module( 'ShapeUtils', () => { // PUBLIC STUFF QUnit.todo( "area", ( assert ) => { assert.ok( false, "everything's gonna be alright" ); } ); QUnit.todo( "isClockWise", ( assert ) => { assert.ok( false, "everything's gonna be alright" ); } ); QUnit.todo( "triangulateShape", ( assert ) => { assert.ok( false, "everything's gonna be alright" ); } ); } ); } );