1 parent 48247f2 commit 689249fCopy full SHA for 689249f
1 file changed
src/tui/plugin-surface.test.ts
@@ -14,6 +14,10 @@ const bundledSkills: PluginModule = {
14
};
15
16
describe("isPluginEnabledForSurface", () => {
17
+ test("projects an unknown plugin as disabled", () => {
18
+ expect(isPluginEnabledForSurface(undefined, {})).toBe(false);
19
+ });
20
+
21
test("projects a bundled default-on plugin as enabled without settings", () => {
22
expect(isPluginEnabledForSurface(bundledSkills, {})).toBe(true);
23
});
0 commit comments