chore: fix format

This commit is contained in:
Ralph Khreish
2025-09-23 19:27:57 +02:00
parent b2ff06e8c5
commit 9ff5f158d5
2 changed files with 1 additions and 2 deletions

View File

@@ -19,7 +19,7 @@ export {
checkForUpdate,
performAutoUpdate,
displayUpgradeNotification,
compareVersions,
compareVersions
} from './utils/auto-update.js';
// Re-export commonly used types from tm-core

View File

@@ -263,7 +263,6 @@ describe('Commands Module - CLI Setup and Integration', () => {
// Test utility functions that commands rely on
describe('Version comparison utility', () => {
test('compareVersions correctly compares semantic versions', () => {
expect(compareVersions('1.0.0', '1.0.0')).toBe(0);
expect(compareVersions('1.0.0', '1.0.1')).toBe(-1);