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

feat: groups containers by stack or compose when possible (#2893)

This commit is contained in:
Amir Raminfar
2024-04-14 14:05:27 -07:00
committed by GitHub
parent 56aa440c92
commit ec03e93298
19 changed files with 97 additions and 70 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.running-containers")).toHaveText("Running Containers");
await expect(page.getByTestId("settings")).toBeVisible();
});