Jake Shore 0d81497724 🚀 Initial commit - Complete GHL MCP Server with 400+ tools
Features:
- 400+ tools covering entire GoHighLevel API
- Contact management, conversations, opportunities, calendars
- Invoices, payments, products, store management
- Social media, email marketing, workflows, and more
- Self-host or use managed solution at mcp.localbosses.org
2026-01-26 20:40:43 -05:00

21 lines
651 B
TypeScript

/**
* Basic test to verify Jest setup
*/
// Set up test environment variables
process.env.GHL_API_KEY = 'test_api_key_123';
process.env.GHL_BASE_URL = 'https://test.leadconnectorhq.com';
process.env.GHL_LOCATION_ID = 'test_location_123';
process.env.NODE_ENV = 'test';
describe('Basic Setup', () => {
it('should run basic test', () => {
expect(true).toBe(true);
});
it('should have environment variables set', () => {
expect(process.env.GHL_API_KEY).toBe('test_api_key_123');
expect(process.env.GHL_BASE_URL).toBe('https://test.leadconnectorhq.com');
expect(process.env.GHL_LOCATION_ID).toBe('test_location_123');
});
});