Skip to content

Commit

Permalink
chore(release): fix e2e
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesHenry committed Sep 3, 2024
1 parent 09bcc39 commit f2311b5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion e2e/release/src/conventional-commits-config.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ describe('nx release conventional commits config', () => {
- ⚠️ **{project-name}:** this is a breaking change
#### ⚠️ Breaking Changes
### ⚠️ Breaking Changes
- ⚠️ **{project-name}:** this is a breaking change
`);
Expand Down
4 changes: 2 additions & 2 deletions e2e/release/src/create-github-release.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ describe('nx release create github release', () => {
expect(result.match(new RegExp(`### 🚀 Features`, 'g')).length).toEqual(2);
expect(result.match(new RegExp(`### 🩹 Fixes`, 'g')).length).toEqual(2);
expect(
result.match(new RegExp(`#### ⚠️ Breaking Changes`, 'g')).length
result.match(new RegExp(`### ⚠️ Breaking Changes`, 'g')).length
).toEqual(2);
});

Expand Down Expand Up @@ -159,7 +159,7 @@ describe('nx release create github release', () => {
expect(result.match(new RegExp(`### 🚀 Features`, 'g')).length).toEqual(2);
expect(result.match(new RegExp(`### 🩹 Fixes`, 'g')).length).toEqual(1);
expect(
result.match(new RegExp(`#### ⚠️ Breaking Changes`, 'g')).length
result.match(new RegExp(`### ⚠️ Breaking Changes`, 'g')).length
).toEqual(1);
});
});

0 comments on commit f2311b5

Please sign in to comment.