blob: 03468c9067cb3d3337612aa7d5531eea6f4cd800 (
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);
});
});
|