mirror of
https://github.com/moltbot/moltbot.git
synced 2026-05-13 15:47:28 +00:00
test: repair latest-main web search regressions
This commit is contained in:
@@ -21,12 +21,15 @@ function readBaseline() {
|
||||
}
|
||||
|
||||
describe("plugin extension import boundary inventory", () => {
|
||||
it("keeps web-search-providers out of the remaining inventory", async () => {
|
||||
it("keeps dedicated web-search registry shims out of the remaining inventory", async () => {
|
||||
const inventory = await collectPluginExtensionImportBoundaryInventory();
|
||||
|
||||
expect(inventory.some((entry) => entry.file === "src/plugins/web-search-providers.ts")).toBe(
|
||||
false,
|
||||
);
|
||||
expect(
|
||||
inventory.some((entry) => entry.file === "src/plugins/bundled-web-search-registry.ts"),
|
||||
).toBe(false);
|
||||
});
|
||||
|
||||
it("ignores boundary shims by scope", async () => {
|
||||
|
||||
Reference in New Issue
Block a user