diff --git a/e2e/i18n.spec.ts b/e2e/i18n.spec.ts index 7dc485079..1ca65edf8 100644 --- a/e2e/i18n.spec.ts +++ b/e2e/i18n.spec.ts @@ -1,6 +1,14 @@ import { test, expect, Page } from "@playwright/test"; import App from "./support/app"; +test("Displays translation on desktop", async ({ page }) => { + const app = new App(page); + await app.goto(); + + await expect(page.locator("#left-pane .quick-search input")) + .toHaveAttribute("placeholder", "Quick search"); +}); + test("Displays translations in Settings", async ({ page }) => { const app = new App(page); await app.goto(); @@ -8,8 +16,8 @@ test("Displays translations in Settings", async ({ page }) => { await app.goToSettings(); await app.noteTree.getByText("Appearance").click(); - expect(app.currentNoteSplit).toContainText("Localization"); - expect(app.currentNoteSplit).toContainText("Language"); + await expect(app.currentNoteSplit).toContainText("Localization"); + await expect(app.currentNoteSplit).toContainText("Language"); }); test("User can change language from settings", async ({ page }) => { diff --git a/integration-tests/i18n.spec.ts b/integration-tests/i18n.spec.ts index 16a49fdbc..4cf7e31c2 100644 --- a/integration-tests/i18n.spec.ts +++ b/integration-tests/i18n.spec.ts @@ -1,10 +1,5 @@ import test, { expect } from "@playwright/test"; -test("Restores language on start-up on desktop", async ({ page, context }) => { - await page.goto("http://localhost:8082"); - await expect(page.locator("#launcher-pane").first()).toContainText("Open New Window"); -}); - test("Restores language on start-up on mobile", async ({ page, context }) => { await context.addCookies([ {