Skip to main content
Glama
global-setup.ts•684 B
export default async function globalSetup() { console.log('đź§Ş Setting up global test environment...'); // Set global test environment variables process.env.NODE_ENV = 'test'; process.env.CLICKUP_API_TOKEN = 'pk_test_token_1234567890abcdef'; // Create test directories if needed const fs = require('fs'); const path = require('path'); const testDirs = [ 'test-results', 'coverage', '.jest-cache' ]; testDirs.forEach(dir => { const dirPath = path.join(process.cwd(), dir); if (!fs.existsSync(dirPath)) { fs.mkdirSync(dirPath, { recursive: true }); } }); console.log('âś… Global test environment setup complete'); }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Chykalophia/ClickUp-MCP-Server---Enhanced'

If you have feedback or need assistance with the MCP directory API, please join our Discord server