Sets up the initial project structure: two packages (@kitchen-md/core and @kitchen-md/bin), shared tsconfig, shared fixtures, per-package test stubs (unit, integration, smoke), .gitignore, and project CLAUDE.md with Conventional Commits convention.
6 lines
168 B
TypeScript
6 lines
168 B
TypeScript
import { describe, test } from "bun:test";
|
|
|
|
describe("cli — integration", () => {
|
|
test.todo("invokes core parser and produces output for a real fixture file");
|
|
});
|