add unit tests

このコミットが含まれているのは:
taehoon 2019-07-05 13:38:52 -04:00
コミット c712754150
1個のファイルの変更11行の追加0行の削除

ファイルの表示

@ -0,0 +1,11 @@
import { extractCommit } from 'src/services/version/version.service.js'
describe('extractCommit', () => {
it('return short commit hash following "-g" characters', () => {
expect(extractCommit('1.0.0-45-g5e7aeebc')).to.eql('5e7aeebc')
})
it('return short commit hash without branch name', () => {
expect(extractCommit('1.0.0-45-g5e7aeebc-branch')).to.eql('5e7aeebc')
})
})