feat(ui): update ui style

This commit is contained in:
RhenCloud 2026-08-16 21:25:57 +08:00
parent ca6dfd3f64
commit 47d7c9105b
No known key found for this signature in database
GPG key ID: A574A617378C4E0B
35 changed files with 1577 additions and 591 deletions

View file

@ -2,7 +2,7 @@ import { describe, it, expect, beforeEach, afterEach } from "bun:test";
import { createHmac } from "crypto";
import { processWebhook } from "../server/lib/webhook";
import { invalidateConfigCache } from "../server/lib/config";
import { loadGroups } from "../server/lib/web/groups";
import { invalidateGroupsCache, loadGroups } from "../server/lib/web/groups";
import type { Env, Route } from "../server/lib/types";
function githubSign(body: string, secret: string): string {
@ -70,6 +70,7 @@ describe("processWebhook", () => {
beforeEach(() => {
invalidateConfigCache();
invalidateGroupsCache();
});
/** waitUntil collector: lets the test await the dispatched work. */