diff --git a/apps/cli/src/index.ts b/apps/cli/src/index.ts index 823743f7..ce0405ee 100644 --- a/apps/cli/src/index.ts +++ b/apps/cli/src/index.ts @@ -19,7 +19,7 @@ export { checkForUpdate, performAutoUpdate, displayUpgradeNotification, - compareVersions, + compareVersions } from './utils/auto-update.js'; // Re-export commonly used types from tm-core diff --git a/tests/unit/commands.test.js b/tests/unit/commands.test.js index 5a9b0863..d2ba2a30 100644 --- a/tests/unit/commands.test.js +++ b/tests/unit/commands.test.js @@ -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);