aboutsummaryrefslogtreecommitdiff
path: root/webAO/components/__tests__/blips.test.js
blob: 9c57e786b2de16f02087032b0d4e55540a38790b (plain)
1
2
3
4
5
6
7
8
9
import createBlip from "../blip";

describe('createBlip', () => {
    test('create 3 blips audios', () => {
        document.body.innerHTML = ``
        createBlip(3)
        expect(document.getElementsByClassName('blipSound').length).toBe(3)
    })
})