mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-21 13:23:07 +01:00
* feat: allows containers to be pinned * adds animation * clean up * updates int test * fixes tests
10 lines
401 B
TypeScript
10 lines
401 B
TypeScript
import { test, expect } from "@playwright/test";
|
|
|
|
test("authentication", async ({ page }) => {
|
|
await page.goto("http://auth:8080/");
|
|
await page.locator('input[name="username"]').fill("foo");
|
|
await page.locator('input[name="password"]').fill("bar");
|
|
await page.getByRole("button", { name: "Login" }).click();
|
|
await expect(page.locator("[data-label=all].label")).toHaveText("Containers");
|
|
});
|