mirror of
https://github.com/koel/koel
synced 2024-12-20 01:23:16 +00:00
48 lines
1.2 KiB
TypeScript
48 lines
1.2 KiB
TypeScript
import { expect, it } from 'vitest'
|
|
import factory from '@/__tests__/factory'
|
|
import { screen } from '@testing-library/vue'
|
|
import UnitTestCase from '@/__tests__/UnitTestCase'
|
|
import SongListItem from './SongListItem.vue'
|
|
|
|
let row: PlayableRow
|
|
|
|
new class extends UnitTestCase {
|
|
protected test () {
|
|
it('renders', async () => {
|
|
const song = factory<Song>('song', {
|
|
title: 'Test Song',
|
|
album_name: 'Test Album',
|
|
artist_name: 'Test Artist',
|
|
length: 1000,
|
|
playback_state: 'Playing',
|
|
track: 12,
|
|
album_cover: 'https://example.com/cover.jpg',
|
|
liked: true
|
|
})
|
|
|
|
const { html } = await this.renderComponent(song)
|
|
expect(html()).toMatchSnapshot()
|
|
})
|
|
|
|
it('emits play event on double click', async () => {
|
|
const { emitted } = this.renderComponent()
|
|
await this.user.dblClick(screen.getByTestId('song-item'))
|
|
expect(emitted().play).toBeTruthy()
|
|
})
|
|
}
|
|
|
|
private renderComponent (song?: Song) {
|
|
song = song ?? factory<Song>('song')
|
|
|
|
row = {
|
|
playable: song,
|
|
selected: false
|
|
}
|
|
|
|
return this.render(SongListItem, {
|
|
props: {
|
|
item: row
|
|
}
|
|
})
|
|
}
|
|
}
|