diff --git a/e2e/vue.spec.ts b/e2e/vue.spec.ts index 87c0605..3514a87 100644 --- a/e2e/vue.spec.ts +++ b/e2e/vue.spec.ts @@ -4,5 +4,5 @@ import { test, expect } from '@playwright/test' // https://playwright.dev/docs/intro test('visits the app root url', async ({ page }) => { await page.goto('/') - await expect(page.locator('h1')).toHaveText('You did it!') -}) + await expect(page.locator('h1')).toHaveText('Word of Mouth') +}) \ No newline at end of file diff --git a/index.html b/index.html index 9e5fc8f..14aa61a 100644 --- a/index.html +++ b/index.html @@ -4,10 +4,10 @@ - Vite App + Word of Mouth
- + \ No newline at end of file diff --git a/src/App.vue b/src/App.vue index 7905b05..152d884 100644 --- a/src/App.vue +++ b/src/App.vue @@ -5,10 +5,8 @@ import HelloWorld from './components/HelloWorld.vue'