11 lines
269 B
TypeScript
11 lines
269 B
TypeScript
import { describe, it, expect } from 'vitest'
|
|
import { mount } from '@vue/test-utils'
|
|
import App from '@/App.vue'
|
|
|
|
describe('App.vue', () => {
|
|
it('renders properly', () => {
|
|
const wrapper = mount(App)
|
|
expect(wrapper.text()).toContain('Plex Playlist')
|
|
})
|
|
})
|