We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/TheLunarCompany/lunar'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
jest.config.cjs•382 B
/** @type {import('jest').Config} */
module.exports = {
// Explicitly exclude e2e folder from Jest
testPathIgnorePatterns: ['/node_modules/', '/e2e/', '/dist/'],
// Only match test files, not spec files (Playwright uses .spec.ts)
testMatch: ['**/src/**/*.test.{ts,tsx}', '**/src/**/*.spec.{ts,tsx}'],
// If no test files are found, don't fail
passWithNoTests: true,
};