scai
Version:
> **AI-powered CLI for local code analysis, commit message suggestions, and natural-language queries.** 100% local, private, GDPR-friendly, made in Denmark/EU with ❤️.
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");
});
});