Prepare for adding theseus

This commit is contained in:
Jai A
2024-07-03 13:25:49 -07:00
parent 10785f156f
commit d33a0cd589
26 changed files with 23 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
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 👋');
});
});