Co-authored-by: Jason Woltje <jason@diversecanvas.com> Co-committed-by: Jason Woltje <jason@diversecanvas.com>
10 lines
270 B
TypeScript
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");
|
|
});
|
|
});
|