chore: fix format
This commit is contained in:
@@ -19,7 +19,7 @@ export {
|
|||||||
checkForUpdate,
|
checkForUpdate,
|
||||||
performAutoUpdate,
|
performAutoUpdate,
|
||||||
displayUpgradeNotification,
|
displayUpgradeNotification,
|
||||||
compareVersions,
|
compareVersions
|
||||||
} from './utils/auto-update.js';
|
} from './utils/auto-update.js';
|
||||||
|
|
||||||
// Re-export commonly used types from tm-core
|
// Re-export commonly used types from tm-core
|
||||||
|
|||||||
@@ -263,7 +263,6 @@ describe('Commands Module - CLI Setup and Integration', () => {
|
|||||||
|
|
||||||
// Test utility functions that commands rely on
|
// Test utility functions that commands rely on
|
||||||
describe('Version comparison utility', () => {
|
describe('Version comparison utility', () => {
|
||||||
|
|
||||||
test('compareVersions correctly compares semantic versions', () => {
|
test('compareVersions correctly compares semantic versions', () => {
|
||||||
expect(compareVersions('1.0.0', '1.0.0')).toBe(0);
|
expect(compareVersions('1.0.0', '1.0.0')).toBe(0);
|
||||||
expect(compareVersions('1.0.0', '1.0.1')).toBe(-1);
|
expect(compareVersions('1.0.0', '1.0.1')).toBe(-1);
|
||||||
|
|||||||
Reference in New Issue
Block a user