AudioContext.tests.js 429 B

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