mirror of
https://github.com/koel/koel
synced 2024-12-20 09:33:23 +00:00
44 lines
1.2 KiB
TypeScript
44 lines
1.2 KiB
TypeScript
import { expect, it } from 'vitest'
|
|
import UnitTestCase from '@/__tests__/UnitTestCase'
|
|
import { screen } from '@testing-library/vue'
|
|
import { faHome } from '@fortawesome/free-solid-svg-icons'
|
|
import Component from './SidebarItem.vue'
|
|
import { eventBus } from '@/utils'
|
|
|
|
new class extends UnitTestCase {
|
|
protected test () {
|
|
it('renders', () => expect(this.renderComponent().html()).toMatchSnapshot())
|
|
|
|
it('activates when the screen matches', async () => {
|
|
this.renderComponent()
|
|
|
|
await this.router.activateRoute({
|
|
screen: 'Home',
|
|
path: '_'
|
|
})
|
|
|
|
expect(screen.getByTestId('sidebar-item').classList.contains('current')).toBe(true)
|
|
})
|
|
|
|
it('emits the sidebar toggle event when clicked', async () => {
|
|
const mock = this.mock(eventBus, 'emit')
|
|
this.renderComponent()
|
|
await this.user.click(screen.getByTestId('sidebar-item'))
|
|
|
|
expect(mock).toHaveBeenCalledWith('TOGGLE_SIDEBAR')
|
|
})
|
|
}
|
|
|
|
private renderComponent () {
|
|
return this.render(Component, {
|
|
props: {
|
|
icon: faHome,
|
|
href: '#',
|
|
screen: 'Home'
|
|
},
|
|
slots: {
|
|
default: 'Home'
|
|
}
|
|
})
|
|
}
|
|
}
|