Files
mosaic/plugins/openclaw-context/tests/smoke.test.ts
Jason Woltje d583dd39c8 feat(wave2): add @mosaic/openclaw-context plugin to monorepo
- OpenClaw → OpenBrain context engine plugin migrated from mosaic/openclaw-openbrain-context
- Depends on @mosaic/types workspace:*
- Typecheck passing
2026-03-06 18:33:09 -06:00

10 lines
270 B
TypeScript

import { describe, expect, it } from "vitest";
import { OPENBRAIN_CONTEXT_ENGINE_ID } from "../src/index.js";
describe("project scaffold", () => {
it("exports openbrain context engine id", () => {
expect(OPENBRAIN_CONTEXT_ENGINE_ID).toBe("openbrain");
});
});