We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Automattic/mcp-wordpress-remote'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
global-teardown.ts•538 B
/**
* Global teardown for Playwright E2E tests
*/
import { FullConfig } from '@playwright/test';
import { cleanupTempDir } from '../utils/test-helpers.js';
async function globalTeardown(config: FullConfig) {
console.log('Cleaning up E2E test environment...');
// Clean up temporary directory
if (process.env.E2E_TEMP_DIR) {
await cleanupTempDir(process.env.E2E_TEMP_DIR);
}
// Clean up any test servers that might be running
console.log('E2E test environment cleanup complete');
}
export default globalTeardown;