import { describe, expect, it } from 'vite-plus/test'
import { createHarness } from '@/__tests__/TestHarness'
import Component from './YouTubeSidebarItem.vue'

describe('youTubeSidebarItem.vue', () => {
  const h = createHarness()

  it('renders', async () => {
    const { html } = h.render(Component, {
      slots: {
        default: 'Another One Bites the Dust',
      },
    })

    expect(html()).toMatchSnapshot()
  })
})
