fix: restore full gate stability

This commit is contained in:
Peter Steinberger
2026-03-19 03:29:37 +00:00
parent c86de678f3
commit 83c5bc946d
26 changed files with 391 additions and 92 deletions

View File

@@ -14,8 +14,8 @@ describe("matrix runtime-api", () => {
expect(typeof runtimeApi.buildSecretInputSchema).toBe("function");
});
it("does not re-export setup entrypoints that create extension cycles", () => {
expect("matrixSetupWizard" in runtimeApi).toBe(false);
expect("matrixSetupAdapter" in runtimeApi).toBe(false);
it("re-exports setup entrypoints from the bundled plugin-sdk surface", () => {
expect(typeof runtimeApi.matrixSetupWizard).toBe("object");
expect(typeof runtimeApi.matrixSetupAdapter).toBe("object");
});
});