(subject: string)
| 13 | const REPO_URL = "https://github.com/heygen-com/hyperframes"; |
| 14 | |
| 15 | function commit(subject: string): RawCommit { |
| 16 | return { |
| 17 | sha: "1234567890abcdef1234567890abcdef12345678", |
| 18 | shortSha: "1234567", |
| 19 | author: "Test Author", |
| 20 | subject, |
| 21 | }; |
| 22 | } |
| 23 | |
| 24 | describe("draft changelog arguments", () => { |
| 25 | it("parses positional, value, inline, and boolean options", () => { |
no outgoing calls
no test coverage detected