- update test (due to previous PR dropping empty titles)

This commit is contained in:
Mike Penz
2023-02-18 12:11:36 +00:00
committed by GitHub
parent e760678c39
commit 154988c06c
+2 -2
View File
@@ -232,7 +232,7 @@ it('Should ignore PRs not merged into develop branch', async () => {
const changeLog = await releaseNotes.pull()
console.log(changeLog)
expect(changeLog).toStrictEqual(`\n\n150\n\n`)
expect(changeLog).toStrictEqual(`150\n\n`)
})
it('Should ignore PRs not merged into main branch', async () => {
@@ -253,5 +253,5 @@ it('Should ignore PRs not merged into main branch', async () => {
const changeLog = await releaseNotes.pull()
console.log(changeLog)
expect(changeLog).toStrictEqual(`\n\n153\n\n`)
expect(changeLog).toStrictEqual(`153\n\n`)
})