We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/s2005/wcli0'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
testCleanup.test.ts•467 B
import { describe, test, expect, afterAll } from '@jest/globals';
describe('Test Suite Cleanup Verification', () => {
test('all tests should complete without warnings', () => {
// This is a placeholder test that passes
// Its presence helps identify if other tests leave open handles
expect(true).toBe(true);
});
afterAll(() => {
if (global.gc) {
global.gc();
}
return new Promise(resolve => setTimeout(resolve, 100));
});
});