mirror of
https://github.com/profullstack/logicsrc.git
synced 2026-08-14 14:57:28 +00:00
Scaffold LogicSRC and CommandBoard plugins
This commit is contained in:
parent
59927e140c
commit
5c9ea821f6
67 changed files with 5958 additions and 0 deletions
12
packages/cli/src/index.test.ts
Normal file
12
packages/cli/src/index.test.ts
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
import { describe, expect, it } from "vitest";
|
||||
import { defaultPluginRegistry } from "./registry.js";
|
||||
|
||||
describe("CLI registry", () => {
|
||||
it("loads default v1 plugins", () => {
|
||||
const ids = defaultPluginRegistry().snapshot().plugins.map((plugin: { id: string }) => plugin.id);
|
||||
|
||||
expect(ids).toContain("coinpay");
|
||||
expect(ids).toContain("ugig");
|
||||
expect(ids).toContain("sh1pt");
|
||||
});
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue