aboutsummaryrefslogtreecommitdiff
path: root/webAO/components/__tests__/audioChannels.test.js
blob: 4407ae3c4bac93a81c53f0fed1da297855a059d0 (plain)
1
2
3
4
5
6
7
8
9
import createAudioChannels from '../audioChannels';

describe('createAudioChannels', () => {
    test('Should create 4 channels', () => {
        document.body.innerHTML = '';
        createAudioChannels(4);
        expect(document.getElementsByClassName('audioChannel').length).toBe(4);
    });
});