Skip to content

Commit

Permalink
chore(release): fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
fahslaj committed Oct 12, 2023
1 parent f1aee7d commit a352e81
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/nx/src/command-line/release/utils/markdown.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { GitCommit } from './git';
import { parseChangelogMarkdown, generateMarkdown } from './markdown';
import { generateMarkdown, parseChangelogMarkdown } from './markdown';

describe('markdown utils', () => {
describe('generateMarkdown()', () => {
Expand Down Expand Up @@ -29,6 +29,7 @@ describe('markdown utils', () => {
},
],
isBreaking: false,
affectedFiles: [],
},
{
message: 'feat(pkg-b): and another new capability',
Expand All @@ -54,6 +55,7 @@ describe('markdown utils', () => {
},
],
isBreaking: false,
affectedFiles: [],
},
{
message: 'feat(pkg-a): new hotness',
Expand All @@ -79,6 +81,7 @@ describe('markdown utils', () => {
},
],
isBreaking: false,
affectedFiles: [],
},
{
message: 'feat(pkg-b): brand new thing',
Expand All @@ -104,6 +107,7 @@ describe('markdown utils', () => {
},
],
isBreaking: false,
affectedFiles: [],
},
{
message: 'fix(pkg-a): squashing bugs',
Expand All @@ -129,6 +133,7 @@ describe('markdown utils', () => {
},
],
isBreaking: false,
affectedFiles: [],
},
];

Expand Down

0 comments on commit a352e81

Please sign in to comment.