AudioContext.tests.js 488 B

123456789101112131415161718192021222324252627
  1. /**
  2. * @author TristanVALCKE / https://github.com/Itee
  3. */
  4. /* global QUnit */
  5. import { AudioContext } from '../../../../src/audio/AudioContext.js';
  6. export default QUnit.module( 'Audios', () => {
  7. QUnit.module( 'AudioContext', () => {
  8. // PUBLIC STUFF
  9. QUnit.todo( "getContext", ( assert ) => {
  10. assert.ok( false, "everything's gonna be alright" );
  11. } );
  12. QUnit.todo( "setContext", ( assert ) => {
  13. assert.ok( false, "everything's gonna be alright" );
  14. } );
  15. } );
  16. } );
粤ICP备19079148号