Aari 1aa813ddb3
feat: add managed subagents and delegation scopes (#4887)
* feat: manage and scope subagents

* fix: address subagent review feedback

* fix: address managed subagent review feedback

* fix: harden subagent settings semantics

* fix: harden managed subagent cache invalidation

* fix: reuse assembled lead agent inputs

* fix: migrate managed subagent definitions

---------

Co-authored-by: Willem Jiang <willem.jiang@gmail.com>
2026-08-24 11:04:23 +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(10);
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);
});
});