mirror of
https://github.com/aaronsb/obsidian-mcp-plugin.git
synced 2026-07-22 06:45:14 +00:00
- 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.
8 lines
No EOL
181 B
TypeScript
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;
|
|
} |