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

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
};