diff --git a/e2e/vue.spec.ts b/e2e/vue.spec.ts index 3e5a3d0..47c1225 100644 --- a/e2e/vue.spec.ts +++ b/e2e/vue.spec.ts @@ -1,8 +1,8 @@ -import { test, expect } from '@playwright/test'; +import { test, expect } from "@playwright/test"; // See here how to get started: // https://playwright.dev/docs/intro -test('visits the app root url', async ({ page }) => { - await page.goto('/'); - await expect(page.locator('div.greetings > h1')).toHaveText('You did it!'); -}) +test("visits the app root url", async ({ page }) => { + await page.goto("/"); + await expect(page.locator("h1")).toHaveText("ActivityWatch"); +}); diff --git a/src/App.vue b/src/App.vue index f4ba5ca..dad2856 100644 --- a/src/App.vue +++ b/src/App.vue @@ -6,7 +6,7 @@ import MenuBar from "./components/MenuBar.vue";