diff --git a/apps/api/src/main.ts b/apps/api/src/main.ts index b9c79ba..edae96b 100644 --- a/apps/api/src/main.ts +++ b/apps/api/src/main.ts @@ -28,7 +28,7 @@ async function bootstrap() { await app.listen(port); Logger.log( - `🚀 Application is running on: http://localhost:${port}/ (API prefix: /${globalPrefix})`, + `🚀 Application is running on: http://localhost:${port}/ (API prefix: /${globalPrefix})` ); } diff --git a/apps/web/src/app/App.spec.ts b/apps/web/src/app/App.spec.ts deleted file mode 100644 index 93dfc34..0000000 --- a/apps/web/src/app/App.spec.ts +++ /dev/null @@ -1,11 +0,0 @@ -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 web 👋'); - }); -}); diff --git a/apps/web/src/app/App.vue b/apps/web/src/app/App.vue index d914c9c..6c00741 100644 --- a/apps/web/src/app/App.vue +++ b/apps/web/src/app/App.vue @@ -1,44 +1,93 @@ - +