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