import { expect, it } from 'vitest' import factory from '@/__tests__/factory' import UnitTestCase from '@/__tests__/UnitTestCase' import { playbackService } from '@/services' import SongThumbnail from '@/components/song/SongThumbnail.vue' import { screen } from '@testing-library/vue' let song: Song new class extends UnitTestCase { private renderComponent (playbackState: PlaybackState = 'Stopped') { song = factory('song', { playback_state: playbackState, play_count: 10, title: 'Foo bar' }) return this.render(SongThumbnail, { props: { song } }) } protected test () { it.each<[PlaybackState, string, MethodOf]>([ ['Stopped', 'Play', 'play'], ['Playing', 'Pause', 'pause'], ['Paused', 'Resume', 'resume'] ])('if state is currently "%s", %ss', async (state, name, method) => { const mock = this.mock(playbackService, method) this.renderComponent(state) await this.user.click(screen.getByRole('button', { name })) expect(mock).toHaveBeenCalled() }) } }