UNPKG

vue-peaks

Version:

A lightweight Vue wrapper around the bbc/peaks.js audio waveform UI component

12 lines (9 loc) 309 B
import { describe, it, expect } from 'vitest'; import { mount } from '@vue/test-utils'; import Credits from '../../documentation/Credits.vue'; describe('Credits', () => { it('renders properly', () => { const wrapper = mount(Credits, {}); expect(wrapper.html()).toContain('Lidija Roos'); }); });