mirror of
https://github.com/rlespinasse/github-slug-action.git
synced 2026-05-22 14:37:13 +00:00
11 lines
280 B
TypeScript
11 lines
280 B
TypeScript
import {shortsha} from '../src/short'
|
|
|
|
function test_short_sha(input: string, expected: string) {
|
|
let actual = shortsha(input)
|
|
expect(actual).toEqual(expected)
|
|
}
|
|
|
|
test('short_sha: long hash', () => {
|
|
test_short_sha('a35a1a486a260cfd99c5b6f8c6034a2929ba9b3f', 'a35a1a48')
|
|
})
|