mirror of
https://akkoma.dev/AkkomaGang/akkoma-fe.git
synced 2024-11-09 10:13:42 +00:00
Add tests to #3
This commit is contained in:
parent
3806f579b9
commit
cea08d41ee
1 changed files with 8 additions and 0 deletions
|
@ -8,4 +8,12 @@ describe('extractCommit', () => {
|
|||
it('return short commit hash without branch name', () => {
|
||||
expect(extractCommit('1.0.0-45-g5e7aeebc-branch')).to.eql('5e7aeebc')
|
||||
})
|
||||
|
||||
it('return branch name', () => {
|
||||
expect(extractCommit('1.0.0-branch')).to.eql('branch')
|
||||
})
|
||||
|
||||
it('return version tag', () => {
|
||||
expect(extractCommit('1.0.0')).to.eql('v1.0.0')
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue