MCPcopy Create free account
hub / github.com/heygen-com/hyperframes / commit

Function commit

scripts/changelog-weekly.test.ts:6–18  ·  view source on GitHub ↗
(subject: string)

Source from the content-addressed store, hash-verified

4import { parseCommit, type RawCommit } from "./draft-changelog.ts";
5
6function commit(subject: string) {
7 const raw: RawCommit = {
8 sha: "1234567890abcdef1234567890abcdef12345678",
9 shortSha: "1234567",
10 author: "Test Author",
11 subject,
12 };
13
14 return {
15 ...parseCommit(raw),
16 date: "2026-06-03",
17 };
18}
19
20describe("weekly changelog arguments", () => {
21 it("parses date range and write flags", () => {

Callers 1

Calls 1

parseCommitFunction · 0.90

Tested by

no test coverage detected