ci: trigga på master + formatfix inför Gitea Actions
CI / Typecheck, test & build (push) Failing after 2s

This commit is contained in:
Sven (AAMOS AI)
2026-08-13 17:25:14 +07:00
parent 61d60931ad
commit c32a7e33c7
141 changed files with 40555 additions and 45210 deletions
+7 -2
View File
@@ -11,7 +11,10 @@ describe("pushOpsSummaryToEoc", () => {
beforeAll(async () => {
await redis.set(
"ops:summary:cache",
JSON.stringify({ app: { app: "cibello", generated_at: new Date().toISOString() }, as_of: new Date().toISOString() }),
JSON.stringify({
app: { app: "cibello", generated_at: new Date().toISOString() },
as_of: new Date().toISOString(),
}),
"EX",
60,
);
@@ -131,7 +134,9 @@ describe("pushOpsSummaryToEoc", () => {
}
expect(board.tiles.find((t: { label: string }) => t.label === "MRR")?.tone).toBe("good");
expect(board.tiles.find((t: { label: string }) => t.label === "Workers")?.tone).toBe("crit");
expect(board.tiles.find((t: { label: string }) => t.label === "Allergen-brott")?.tone).toBe("crit");
expect(board.tiles.find((t: { label: string }) => t.label === "Allergen-brott")?.tone).toBe(
"crit",
);
} finally {
globalThis.fetch = originalFetch;
}