1
0
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:
Amir Raminfar
2023-07-24 15:06:42 -07:00
committed by GitHub
parent 18005fcd23
commit 1b056346c0
24 changed files with 170 additions and 148 deletions

View File

@@ -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({});
});
});