mirror of
https://github.com/koel/koel
synced 2024-12-21 10:03:10 +00:00
23 lines
707 B
TypeScript
23 lines
707 B
TypeScript
import { screen } from '@testing-library/vue'
|
|
import { expect, it } from 'vitest'
|
|
import UnitTestCase from '@/__tests__/UnitTestCase'
|
|
import SidebarYourMusicSection from './SidebarYourMusicSection.vue'
|
|
import { eventBus } from '@/utils'
|
|
|
|
new class extends UnitTestCase {
|
|
protected test () {
|
|
it('shows YouTube item if a video is played', async () => {
|
|
this.render(SidebarYourMusicSection)
|
|
expect(screen.queryByTestId('youtube')).toBeNull()
|
|
|
|
eventBus.emit('PLAY_YOUTUBE_VIDEO', {
|
|
id: 'video-id',
|
|
title: 'Another One Bites the Dust',
|
|
})
|
|
|
|
await this.tick()
|
|
screen.getByTestId('youtube')
|
|
screen.getByText('Another One Bites the Dust')
|
|
})
|
|
}
|
|
}
|