aaronsb_obsidian-mcp-plugin/tests/setup.ts
Aaron Bockelie f19fecdb0f feat: Add linting, testing, and development documentation
- Add ESLint configuration with TypeScript support
- Set up Jest testing framework with Obsidian mocks
- Add basic MCP server tests
- Create DEVELOPMENT.md with Claude Code integration guide
- Update GitHub Action to include lint and test steps
- Use modern GitHub CLI for releases instead of deprecated actions

Testing and linting now part of CI/CD pipeline for quality assurance.
2025-06-27 11:18:36 -05:00

8 lines
No EOL
181 B
TypeScript

// Jest setup file for Obsidian plugin testing
// Mock performance API if not available
if (!global.performance) {
global.performance = {
now: () => Date.now(),
} as any;
}