scai
Version:
> **A local-first AI CLI for understanding, querying, and iterating on large codebases.** > **100% local • No token costs • No cloud • No prompt injection • Private by design**
11 lines (10 loc) • 367 B
JavaScript
import { SCAI_HOME } from "../constants"; // example constant
// cli/src/__tests__/example.test.ts
describe("CLI src basic test", () => {
it("should pass a simple truthy test", () => {
expect(true).toBe(true);
});
it("should import a constant from cli/src/constants.ts", () => {
expect(typeof SCAI_HOME).not.toBe("undefined");
});
});