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

11 lines
276 B
TypeScript
Raw Normal View History

2026-06-19 17:00:57 -04:00
import { describe, it, expect } from 'vitest';
import { mount } from '@vue/test-utils';
import App from '@/App.vue';
2025-10-19 21:35:02 -04:00
describe('App.vue', () => {
it('renders properly', () => {
2026-06-19 17:00:57 -04:00
const wrapper = mount(App);
expect(wrapper.text()).toContain('Plex Playlist');
});
});