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