ShapeUtils.tests.js 591 B

123456789101112131415161718192021222324252627282930313233
  1. /**
  2. * @author TristanVALCKE / https://github.com/Itee
  3. */
  4. /* global QUnit */
  5. import { ShapeUtils } from '../../../../src/extras/ShapeUtils';
  6. export default QUnit.module( 'Extras', () => {
  7. QUnit.module( 'ShapeUtils', () => {
  8. // PUBLIC STUFF
  9. QUnit.todo( "area", ( assert ) => {
  10. assert.ok( false, "everything's gonna be alright" );
  11. } );
  12. QUnit.todo( "isClockWise", ( assert ) => {
  13. assert.ok( false, "everything's gonna be alright" );
  14. } );
  15. QUnit.todo( "triangulateShape", ( assert ) => {
  16. assert.ok( false, "everything's gonna be alright" );
  17. } );
  18. } );
  19. } );
粤ICP备19079148号