Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: add a test for parsing commit messages with code #2271

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 12 additions & 0 deletions test/commits.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,18 @@ describe('parseConventionalCommits', () => {
expect(conventionalCommits[0].references[0].action).to.eql('Fixes');
});

it('parse commits with code examples', async () => {
const commits = [buildCommitFromFixture('bug-with-code')];
const conventionalCommits = parseConventionalCommits(commits);
expect(conventionalCommits).lengthOf(1);
expect(conventionalCommits[0].type).to.eql('fix');
expect(conventionalCommits[0].breaking).to.be.false;
expect(conventionalCommits[0].references).lengthOf(1);
expect(conventionalCommits[0].references[0].prefix).to.eql('#');
expect(conventionalCommits[0].references[0].issue).to.eql('123');
expect(conventionalCommits[0].references[0].action).to.eql('Fixes');
});

it('captures git trailers', async () => {
const commits = [buildCommitFromFixture('git-trailers-with-breaking')];
const conventionalCommits = parseConventionalCommits(commits);
Expand Down
9 changes: 9 additions & 0 deletions test/fixtures/commit-messages/bug-with-code.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
fix: some fix

Example:

```
page.on('request', (request) => {})
```

Fixes #123