diff --git a/src/helpers/create-native-channel-splitter-node.ts b/src/helpers/create-native-channel-splitter-node.ts index 1885ce073..17770b639 100644 --- a/src/helpers/create-native-channel-splitter-node.ts +++ b/src/helpers/create-native-channel-splitter-node.ts @@ -22,7 +22,7 @@ export const createNativeChannelSplitterNode = ( assignNativeAudioNodeOptions(nativeNode, options); - // Bug #29 - #32: Only Chrome partially supports the spec yet. + // Bug #29 - #32: Only Chrome & Opera partially support the spec yet. channelSplitterNodeWrapper.wrap(nativeNode); return nativeNode; diff --git a/test/expectation/opera/audio-context-constructor.js b/test/expectation/opera/audio-context-constructor.js index 392761c9c..042526d71 100644 --- a/test/expectation/opera/audio-context-constructor.js +++ b/test/expectation/opera/audio-context-constructor.js @@ -109,22 +109,6 @@ describe('audioContextConstructor', () => { channelSplitterNode.channelCountMode = 'explicit'; }); - // bug #31 - - it('should have a channelInterpretation of speakers', () => { - const channelSplitterNode = audioContext.createChannelSplitter(); - - expect(channelSplitterNode.channelInterpretation).to.equal('speakers'); - }); - - // bug #32 - - it('should allow to set the channelInterpretation', () => { - const channelSplitterNode = audioContext.createChannelSplitter(); - - channelSplitterNode.channelInterpretation = 'discrete'; - }); - }); describe('createGain()', () => { diff --git a/test/expectation/opera/offline-audio-context-constructor.js b/test/expectation/opera/offline-audio-context-constructor.js index 8f7ea0fab..8ccb98cb3 100644 --- a/test/expectation/opera/offline-audio-context-constructor.js +++ b/test/expectation/opera/offline-audio-context-constructor.js @@ -105,22 +105,6 @@ describe('offlineAudioContextConstructor', () => { channelSplitterNode.channelCountMode = 'explicit'; }); - // bug #31 - - it('should have a channelInterpretation of speakers', () => { - const channelSplitterNode = offlineAudioContext.createChannelSplitter(); - - expect(channelSplitterNode.channelInterpretation).to.equal('speakers'); - }); - - // bug #32 - - it('should allow to set the channelInterpretation', () => { - const channelSplitterNode = offlineAudioContext.createChannelSplitter(); - - channelSplitterNode.channelInterpretation = 'discrete'; - }); - }); describe('createGain()', () => {