figma-to-react-mcp
Version:
Convert Figma designs to React components automatically. MCP server with GitHub, Figma, and Playwright integrations for seamless design-to-code workflow.
14 lines • 438 B
JavaScript
import "jest";
process.env.GITHUB_TOKEN = "test-github-token";
process.env.GITHUB_OWNER = "test-owner";
process.env.GITHUB_REPO = "test-repo";
process.env.FIGMA_ACCESS_TOKEN = "test-figma-token";
process.env.PLAYWRIGHT_HEADLESS = "true";
process.env.PLAYWRIGHT_TIMEOUT = "30000";
process.env.MCP_SERVER_NAME = "test-mcp-server";
process.env.LOG_LEVEL = "error";
beforeAll(() => {
});
afterAll(() => {
});
//# sourceMappingURL=setup.js.map