1
0
Files
AstralRinth/apps/theseus-gui/src/app/App.spec.ts
2024-07-03 11:05:58 -07:00

15 lines
340 B
TypeScript

import router from '../router';
import { mount } from '@vue/test-utils';
import App from './App.vue';
describe('App', () => {
it('renders properly', async () => {
const wrapper = mount(App, { global: { plugins: [router] } });
await router.isReady();
expect(wrapper.text()).toContain('Welcome theseus-gui 👋');
});
});