Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix test error
  • Loading branch information
mahabaleshwars committed Jul 3, 2025
commit 7f499ce6178eaf1067ca353acec5d9fea0dc26eb
3 changes: 2 additions & 1 deletion __tests__/distributors/graalvm-installer.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,8 @@ describe('GraalVMDistribution', () => {

const osType = distribution.getPlatform();
if (osType === 'windows' && distroArch === 'aarch64') {
test.skip('Skipping test: aarch64 is not available for Windows');
console.warn('Skipping test: aarch64 is not available for Windows');
return;
}

const archiveType = getDownloadArchiveExtension();
Expand Down
Loading