Skip to content

Commit

Permalink
chore: commit source con provider fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeCadwallader committed Oct 1, 2024
1 parent 69a4615 commit 6b084b6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/commands/commitgen.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ describe('command/commitgen', () => {
isEnabled: async () => true,
getBranchName: async () => `${type}/123`,
root: async () => '/',
getCurrentCommitMessage: async () => 'feat: create the thing',
getCommits: async () => ['feat: correct'],
}),
);

Expand Down Expand Up @@ -81,6 +83,8 @@ describe('command/commitgen', () => {
isEnabled: async () => true,
getBranchName: async () => `feat/123`,
root: async () => '/',
getCurrentCommitMessage: async () => 'feat: create the thing',
getCommits: async () => ['feat: correct'],
}),
);

Expand Down

0 comments on commit 6b084b6

Please sign in to comment.