Adding baseUrl for GHE auth

This commit is contained in:
Leo Giovanetti
2021-12-03 18:47:02 -03:00
parent 8178b36b5a
commit 71cd64f865
9 changed files with 1349 additions and 8107 deletions
+9
View File
@@ -6,6 +6,7 @@ jest.setTimeout(180000)
it('Should match generated changelog (unspecified fromTag)', async () => {
const configuration = resolveConfiguration('', 'configs/configuration.json')
const releaseNotesBuilder = new ReleaseNotesBuilder(
null,
null,
'.',
'mikepenz',
@@ -31,6 +32,7 @@ it('Should match generated changelog (unspecified fromTag)', async () => {
it('Should match generated changelog (unspecified tags)', async () => {
const configuration = resolveConfiguration('', 'configs/configuration.json')
const releaseNotesBuilder = new ReleaseNotesBuilder(
null,
null,
'.',
'mikepenz',
@@ -53,6 +55,7 @@ it('Should match generated changelog (unspecified tags)', async () => {
it('Should use empty placeholder', async () => {
const configuration = resolveConfiguration('', 'configs/configuration.json')
const releaseNotesBuilder = new ReleaseNotesBuilder(
null,
null,
'.',
'mikepenz',
@@ -76,6 +79,7 @@ it('Should fill empty placeholders', async () => {
'configs_test/configuration_empty_all_placeholders.json'
)
const releaseNotesBuilder = new ReleaseNotesBuilder(
null,
null,
'.',
'mikepenz',
@@ -101,6 +105,7 @@ it('Should fill `template` placeholders', async () => {
'configs_test/configuration_empty_all_placeholders.json'
)
const releaseNotesBuilder = new ReleaseNotesBuilder(
null,
null,
'.',
'mikepenz',
@@ -126,6 +131,7 @@ it('Should fill `template` placeholders, ignore', async () => {
'configs_test/configuration_empty_all_placeholders.json'
)
const releaseNotesBuilder = new ReleaseNotesBuilder(
null,
null,
'.',
'mikepenz',
@@ -151,6 +157,7 @@ it('Uncategorized category', async () => {
'configs_test/configuration_uncategorized_category.json'
)
const releaseNotesBuilder = new ReleaseNotesBuilder(
null,
null,
'.',
'mikepenz',
@@ -176,6 +183,7 @@ it('Verify commit based changelog', async () => {
'configs_test/configuration_commits.json'
)
const releaseNotesBuilder = new ReleaseNotesBuilder(
null,
null,
'.',
'mikepenz',
@@ -201,6 +209,7 @@ it('Verify commit based changelog, with emoji categorisation', async () => {
'configs_test/configuration_commits_emoji.json'
)
const releaseNotesBuilder = new ReleaseNotesBuilder(
null,
null,
'.',
'theapache64',