aboutsummaryrefslogtreecommitdiff
path: root/webAO/components/__tests__/audioChannels.test.js
blob: 243d870aa903214f8fda3f3206711f5247d3bfbe (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)
    })
})