You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ghost/apps/admin-x-settings/test/unit/utils/linkToGithubReleases.test.ts

35 lines
1.3 KiB

import * as assert from 'assert/strict';
import {linkToGitHubReleases} from '../../../src/utils/linkToGithubReleases';
describe('linkToGithubRelease', function () {
it('handles empty version', function () {
const link = linkToGitHubReleases('');
assert.equal(link, '');
});
it('handles plain version release', function () {
const link = linkToGitHubReleases('5.69.0');
assert.equal(link, 'https://github.com/TryGhost/Ghost/releases/tag/v5.69.0');
});
it('handles plain version with +moya suffix', function () {
const link = linkToGitHubReleases('5.69.0+moya');
assert.equal(link, 'https://github.com/TryGhost/Ghost/releases/tag/v5.69.0');
});
it('handles git describe output', function () {
const link = linkToGitHubReleases('5.69.0-0-gabcdef');
assert.equal(link, 'https://github.com/TryGhost/Ghost/commit/abcdef');
});
it('handles git describe output with +moya suffix', function () {
const link = linkToGitHubReleases('5.69.0-0-gabcdef+moya');
assert.equal(link, 'https://github.com/TryGhost/Ghost/commit/abcdef');
});
it('handles prerelease version', function () {
const link = linkToGitHubReleases('5.70.0-pre-gabcdef+moya');
assert.equal(link, 'https://github.com/TryGhost/Ghost/commit/abcdef');
});
});