Files
plex-playlist/frontend/tests/unit/App.test.ts

11 lines
269 B
TypeScript
Raw Normal View History

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')
})
})