ShapeUtils.tests.js 541 B

123456789101112131415161718192021222324252627282930
  1. /* global QUnit */
  2. // import { ShapeUtils } from '../../../../src/extras/ShapeUtils.js';
  3. export default QUnit.module( 'Extras', () => {
  4. QUnit.module( 'ShapeUtils', () => {
  5. // PUBLIC STUFF
  6. QUnit.todo( 'area', ( assert ) => {
  7. assert.ok( false, 'everything\'s gonna be alright' );
  8. } );
  9. QUnit.todo( 'isClockWise', ( assert ) => {
  10. assert.ok( false, 'everything\'s gonna be alright' );
  11. } );
  12. QUnit.todo( 'triangulateShape', ( assert ) => {
  13. assert.ok( false, 'everything\'s gonna be alright' );
  14. } );
  15. } );
  16. } );