From 9ff5f158d5b7ea2344f5ed9e1287605b1d921a58 Mon Sep 17 00:00:00 2001 From: Ralph Khreish <35776126+Crunchyman-ralph@users.noreply.github.com> Date: Tue, 23 Sep 2025 19:27:57 +0200 Subject: [PATCH] chore: fix format --- apps/cli/src/index.ts | 2 +- tests/unit/commands.test.js | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) 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);