🌐 Remove abandoned languages (#739)

This commit is contained in:
Luke Vella 2023-07-13 14:34:15 +01:00 committed by GitHub
parent 47d5d1c70d
commit 1920de1402
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 16 additions and 11 deletions

View file

@ -3,7 +3,7 @@ import test, { expect } from "@playwright/test";
test("should show correct language if supported", async ({ browser }) => {
const context = await browser.newContext({ locale: "de" });
const page = await context.newPage();
await page.goto("/");
await page.goto("/new");
await expect(page.locator("text=Neue Umfrage")).toBeVisible();
});