lamplighter-mcp
Version:
An intelligent context engine for AI-assisted software development
22 lines (18 loc) • 467 B
text/typescript
import '@testing-library/jest-dom';
// Use node fetch for tests
import { fetch, Headers, Request, Response } from 'cross-fetch';
global.fetch = fetch;
global.Headers = Headers;
global.Request = Request;
global.Response = Response;
// Add any global test setup here
beforeAll(() => {
// Setup global test environment
});
afterAll(() => {
// Cleanup global test environment
});
// Add custom matchers if needed
expect.extend({
// Add custom matchers here
});