mirror of
https://github.com/profullstack/logicsrc.git
synced 2026-08-14 14:57:28 +00:00
Add credential sharing openspec
This commit is contained in:
parent
de517ba9b7
commit
a0314eb774
23 changed files with 616 additions and 132 deletions
|
|
@ -2,11 +2,11 @@ import { describe, expect, it } from "vitest";
|
|||
import { defaultPluginRegistry } from "./registry.js";
|
||||
|
||||
describe("CLI registry", () => {
|
||||
it("loads default v1 plugins", () => {
|
||||
it("loads open standards plugins only", () => {
|
||||
const ids = defaultPluginRegistry().snapshot().plugins.map((plugin: { id: string }) => plugin.id);
|
||||
|
||||
expect(ids).toContain("coinpay");
|
||||
expect(ids).toContain("ugig");
|
||||
expect(ids).toContain("sh1pt");
|
||||
expect(ids).not.toContain("sh1pt");
|
||||
});
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue