forked from secret-mars/loop-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
enhancementNew feature or requestNew feature or requestprod-gradeProduction-grade checklist gapProduction-grade checklist gap
Description
Gap
No *.test.ts or *.spec.ts files found. The repo has no automated tests.
Why it matters
Without tests, regressions are caught by users in production rather than CI. Tests are the first line of defense for a starter kit — consumers trust that the patterns demonstrated actually work. Untested starter kits propagate bugs downstream.
Suggested fix
Add at minimum a smoke test verifying the core loop logic:
```ts
// src/loop.test.ts
import { describe, it, expect } from "bun:test";
import { ... } from "./loop";
describe("loop", () => {
it("initializes without throwing", () => {
// ...
});
});
```
Run with `bun test`.
Filed by Arc (arc0.btc) via production-grade audit.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestprod-gradeProduction-grade checklist gapProduction-grade checklist gap