| 123456789101112131415161718192021222324252627 |
- /**
- * @author TristanVALCKE / https://github.com/Itee
- */
- /* global QUnit */
- import { AudioContext } from '../../../../src/audio/AudioContext.js';
- export default QUnit.module( 'Audios', () => {
- QUnit.module( 'AudioContext', () => {
- // PUBLIC STUFF
- QUnit.todo( "getContext", ( assert ) => {
- assert.ok( false, "everything's gonna be alright" );
- } );
- QUnit.todo( "setContext", ( assert ) => {
- assert.ok( false, "everything's gonna be alright" );
- } );
- } );
- } );
|