first commit

This commit is contained in:
Michal
2026-02-21 03:10:39 +00:00
commit d0aa0c5d63
174 changed files with 21169 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import { describe, it, expect } from 'vitest';
import { APP_NAME, APP_VERSION, DEFAULT_MCPD_URL } from '../src/constants/index.js';
describe('shared package', () => {
it('exports APP_NAME constant', () => {
expect(APP_NAME).toBe('mcpctl');
});
it('exports APP_VERSION constant', () => {
expect(APP_VERSION).toBe('0.1.0');
});
it('exports DEFAULT_MCPD_URL constant', () => {
expect(DEFAULT_MCPD_URL).toBe('http://localhost:3000');
});
});