mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-21 13:23:07 +01:00
feat: adds exponential average and a new dashboard showing all containers (#2317)
* chore: updates modules * feat: adds support for exponential moving average * feat: add expoentital moving avg * adds index page * cleans up table * fixes typecheck * adds bar chart * updates dashboard to orgua table * wip * cleans up ui * remove screenshot tests for playwright * adds more tests * fixes icon * fixes default sort * removes unused var * adds vscode settings
This commit is contained in:
@@ -1,20 +0,0 @@
|
||||
import { test, expect } from "@playwright/test";
|
||||
|
||||
test.beforeEach(async ({ page }) => {
|
||||
await page.goto("http://dozzle:8080/");
|
||||
});
|
||||
|
||||
test.describe("default", () => {
|
||||
test("homepage", async ({ page }) => {
|
||||
await page.addStyleTag({ content: `[data-ci-skip] { visibility: hidden; }` });
|
||||
await expect(page).toHaveScreenshot({});
|
||||
});
|
||||
});
|
||||
|
||||
test.describe("dark", () => {
|
||||
test.use({ colorScheme: "dark" });
|
||||
test("homepage", async ({ page }) => {
|
||||
await page.addStyleTag({ content: `[data-ci-skip] { visibility: hidden; }` });
|
||||
await expect(page).toHaveScreenshot({});
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user