Skip to content

Commit

Permalink
fix: use helpUrl from config when present
Browse files Browse the repository at this point in the history
Fixes #234
  • Loading branch information
wagoid committed Oct 11, 2021
1 parent 6e7e70a commit e0c8746
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
4 changes: 4 additions & 0 deletions fixtures/custom-help-url/commitlint.config.js
@@ -0,0 +1,4 @@
module.exports = {
extends: ['@commitlint/config-conventional'],
helpUrl: 'https://example.org',
}
28 changes: 28 additions & 0 deletions src/action.test.js
Expand Up @@ -76,6 +76,13 @@ describe('Commit Linter action', () => {
await runAction()

td.verify(core.setFailed(contains('You have commit messages with errors')))
td.verify(
core.setFailed(
contains(
'https://github.com/conventional-changelog/commitlint/#what-is-commitlint',
),
),
)
})

it('should fail for single push with incorrect message', async () => {
Expand Down Expand Up @@ -577,4 +584,25 @@ describe('Commit Linter action', () => {
td.verify(console.log('Lint free! 🎉'))
})
})

describe('when a different helpUrl is provided in the config', () => {
beforeEach(async () => {
cwd = await git.bootstrap('fixtures/custom-help-url')
await gitEmptyCommit(cwd, 'wrong message')
const [to] = await getCommitHashes(cwd)
await createPushEventPayload(cwd, { to })
updatePushEnvVars(cwd, to)
td.replace(process, 'cwd', () => cwd)
td.replace(console, 'log')
})

it('should show custom URL from helpUrl', async () => {
await runAction()

td.verify(
core.setFailed(contains('You have commit messages with errors')),
)
td.verify(core.setFailed(contains(' https://example.org')))
})
})
})

0 comments on commit e0c8746

Please sign in to comment.