/* global QUnit */ // import { ShapeUtils } from '../../../../src/extras/ShapeUtils.js'; 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' ); } ); } ); } );