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