[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot]
2026-07-14 17:37:53 +00:00
committed by GitHub
parent faf600bd88
commit c9817da45b

View File

@@ -2,9 +2,7 @@ import { getLogType } from "@/components/dashboard/docker/logs/utils";
import { expect, test } from "vitest";
test("classifies real failures as error", () => {
expect(getLogType("Error: connection refused at db:5432").type).toBe(
"error",
);
expect(getLogType("Error: connection refused at db:5432").type).toBe("error");
expect(getLogType("[ERROR] something went wrong").type).toBe("error");
expect(getLogType("Deployment failed").type).toBe("error");
expect(