Compare commits

..

1 Commits

Author SHA1 Message Date
62204348e3 Update zulu-installer.test.ts 2022-03-31 21:46:06 +05:30
2 changed files with 2 additions and 1 deletions

View File

@ -139,6 +139,7 @@ describe('findPackageForDownload', () => {
packageType: 'jdk',
checkLatest: false
});
distribution['getAvailableVersions'] = async () => manifestData;
await expect(
distribution['findPackageForDownload'](distribution['version'])
).rejects.toThrowError(/Could not find satisfied version for semver */);

View File

@ -51,7 +51,7 @@ export function getDownloadArchiveExtension() {
export function isVersionSatisfies(range: string, version: string): boolean {
if (semver.valid(range)) {
// if full version with build digit is provided as a range (such as '1.2.3+4')
// Tes we should check for exact equal via compareBuild
// we should check for exact equal via compareBuild
// since semver.satisfies doesn't handle 4th digit
const semRange = semver.parse(range);
if (semRange && semRange.build?.length > 0) {