Skip to content

Commit

Permalink
Tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mkurz committed Feb 1, 2022
1 parent b285009 commit a8dc8dc
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions test/index.test.js
Expand Up @@ -2147,6 +2147,17 @@ describe('release-drafter', () => {
}
)
})
it('gets the version from the tag, expands variables in it and forces using the tag', async () => {
return overridesTest(
{ tag: 'v$RESOLVED_VERSION-beta' },
{
body: `Placeholder with example. Automatically calculated values based on previous releases are next major=3.0.0, minor=2.1.0, patch=2.0.1. Manual input version is 2.1.1.`,
draft: true,
name: 'v2.1.1 (Code name: Placeholder)',
tag_name: 'v2.0.1-beta',
}
)
})
})

describe('with just the name', () => {
Expand All @@ -2161,6 +2172,17 @@ describe('release-drafter', () => {
}
)
})
it('gets the version from the name, expands variables in it and forces using the name', async () => {
return overridesTest(
{ name: 'v$RESOLVED_VERSION-beta (Code name: Foxtrot Unicorn)' },
{
body: `Placeholder with example. Automatically calculated values based on previous releases are next major=3.0.0, minor=2.1.0, patch=2.0.1. Manual input version is 2.1.1.`,
draft: true,
name: 'v2.0.1-beta (Code name: Foxtrot Unicorn)',
tag_name: 'v2.1.1',
}
)
})
})

describe('with publish: true', () => {
Expand Down

0 comments on commit a8dc8dc

Please sign in to comment.