Wenchao An a246c928e9
feat(frontend): move capability management out of Settings (#5468)
* feat(frontend): move capability management out of settings

* fix(frontend): address capability center review feedback
2026-09-16 18:39:24 +08:00

41 lines
1.4 KiB
TypeScript

import { readFileSync } from "node:fs";
import path from "node:path";
import { describe, expect, it } from "@rstest/core";
const FRONTEND_ROOT = path.resolve(__dirname, "../../../..");
const read = (relativePath: string) =>
readFileSync(path.join(FRONTEND_ROOT, relativePath), "utf8");
describe("interaction-only bundle boundaries", () => {
it("does not import the settings dialog until its store is open", () => {
const host = read(
"src/components/workspace/settings/settings-dialog-host.tsx",
);
expect(host).toContain("dynamic(");
expect(host).toContain("if (!open)");
expect(host).not.toContain(
'import { SettingsDialog } from "./settings-dialog"',
);
});
it("loads each settings page from its active section", () => {
const dialog = read(
"src/components/workspace/settings/settings-dialog.tsx",
);
expect(dialog.match(/dynamic\(/g)).toHaveLength(7);
expect(dialog).not.toMatch(
/import \{ \w+SettingsPage \} from "@\/components\/workspace\/settings\//,
);
});
it("keeps right-panel implementations behind dynamic imports", () => {
const chatBox = read("src/components/workspace/chats/chat-box.tsx");
expect(chatBox).toContain('import dynamic from "next/dynamic"');
expect(chatBox).not.toMatch(
/import \{ (?:ArtifactFileDetail|ArtifactFileList|BrowserViewPanel|SidecarPanel)/,
);
expect(chatBox.match(/dynamic\(/g)?.length).toBeGreaterThanOrEqual(4);
});
});