Mykel Stanley db18a8991d Initial release - GoHighLevel MCP Server with 269+ tools
🚀 Features:
- 269 MCP tools across 19+ categories
- Complete GoHighLevel API integration
- Private Integrations API key support
- One-click deployment to Vercel/Railway
- Comprehensive documentation
- Community-driven development

Built for the GoHighLevel community to accelerate AI automation adoption.
2025-06-08 20:42:45 -04:00

32 lines
630 B
JavaScript

module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
roots: ['<rootDir>/tests'],
testMatch: [
'**/tests/**/*.test.ts'
],
transform: {
'^.+\\.ts$': 'ts-jest'
},
moduleFileExtensions: ['ts', 'js'],
moduleNameMapper: {
'^(\\.{1,2}/.*)\\.js$': '$1'
},
collectCoverageFrom: [
'src/**/*.ts',
'!src/**/*.d.ts',
'!src/server.ts'
],
coverageDirectory: 'coverage',
coverageReporters: ['text', 'lcov', 'html'],
coverageThreshold: {
global: {
branches: 70,
functions: 70,
lines: 70,
statements: 70
}
},
verbose: true,
testTimeout: 10000
};