feat(scum): add local game player intelligence

This commit is contained in:
npc0-hue
2026-07-28 15:23:09 +08:00
parent c5806cc6b7
commit 73947edcee
26 changed files with 1209 additions and 65 deletions
@@ -0,0 +1,11 @@
import { describe, expect, it } from "vitest";
import source from "./GamePlayerIntelligencePanel.tsx?raw";
describe("GamePlayerIntelligencePanel", () => {
it("renders reviewable labels without raw network material or enforcement controls", () => {
expect(source).toContain("需要人工审核");
expect(source).toContain("失败尝试");
expect(source).not.toContain("networkFingerprint");
expect(source).not.toMatch(/\bban\b|\bkick\b/i);
});
});