1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-21 13:23:07 +01:00

feat: updates labels between running and all containers (#2742)

This commit is contained in:
Amir Raminfar
2024-02-01 14:07:16 -08:00
committed by GitHub
parent 8677a34087
commit bd86b2289b
14 changed files with 17 additions and 3 deletions

View File

@@ -5,5 +5,5 @@ test("simple authentication", async ({ page }) => {
await page.locator('input[name="username"]').fill("admin");
await page.locator('input[name="password"]').fill("password");
await page.locator('button[type="submit"]').click();
await expect(page.getByTestId("label.containers")).toHaveText("Containers");
await expect(page.getByTestId("label.running-containers")).toHaveText("Running Containers");
});