koel/resources/assets/js/components/album/AlbumInfo.spec.ts
2022-05-09 11:59:31 +02:00

42 lines
1.1 KiB
TypeScript

import { expect, it } from 'vitest'
import { fireEvent } from '@testing-library/vue'
import factory from '@/__tests__/factory'
import ComponentTestCase from '@/__tests__/ComponentTestCase'
import AlbumInfo from './AlbumInfo.vue'
import AlbumThumbnail from '@/components/ui/AlbumArtistThumbnail.vue'
new class extends ComponentTestCase {
protected test () {
it.each([['sidebar'], ['full']])('renders in %s mode', async (mode: string) => {
const { getByTestId } = this.render(AlbumInfo, {
props: {
mode,
album: factory<Album>('album')
},
global: {
stubs: {
AlbumThumbnail
}
}
})
getByTestId('album-artist-thumbnail')
const element = getByTestId<HTMLElement>('album-info')
expect(element.classList.contains(mode)).toBe(true)
})
it('triggers showing full wiki', async () => {
const album = factory<Album>('album')
const { getByText } = this.render(AlbumInfo, {
props: {
album
}
})
await fireEvent.click(getByText('Full Wiki'))
getByText(album.info!.wiki!.full)
})
}
}