chore: address GraalVM community review feedback

This commit is contained in:
copilot-swe-agent[bot]
2026-06-22 20:30:01 +00:00
committed by GitHub
parent ad52b8c6db
commit 6929a11922
3 changed files with 17 additions and 9 deletions
@@ -1054,12 +1054,20 @@ describe('GraalVMDistribution', () => {
});
});
describe('distribution factory', () => {
it('should map graalvm-community to the community installer', () => {
const community = getJavaDistribution('graalvm-community', defaultOptions);
});
expect(community).toBeInstanceOf(GraalVMCommunityDistribution);
});
describe('distribution factory', () => {
const defaultOptions: JavaInstallerOptions = {
version: '17',
architecture: 'x64',
packageType: 'jdk',
checkLatest: false
};
it('should map graalvm-community to the community installer', () => {
const community = getJavaDistribution('graalvm-community', defaultOptions);
expect(community).toBeInstanceOf(GraalVMCommunityDistribution);
});
});
});