ImageUtils.tests.js 425 B

123456789101112131415161718192021222324
  1. /* global QUnit */
  2. // import { ImageUtils } from '../../../../src/extras/ImageUtils.js';
  3. export default QUnit.module( 'Extras', () => {
  4. QUnit.module( 'ImageUtils', () => {
  5. // STATIC
  6. QUnit.todo( 'getDataURL', ( assert ) => {
  7. assert.ok( false, 'everything\'s gonna be alright' );
  8. } );
  9. QUnit.todo( 'sRGBToLinear', ( assert ) => {
  10. assert.ok( false, 'everything\'s gonna be alright' );
  11. } );
  12. } );
  13. } );
粤ICP备19079148号