UNPKG

@sanderkooger/mcp-server-ragdocs

Version:

An MCP server for semantic documentation search and retrieval using vector databases to augment LLM capabilities.

14 lines (13 loc) 332 B
import { expect } from 'chai'; import { sum } from './testFunction.js'; describe('sum function', () => { it('should add two numbers correctly', () => { // Arrange const a = 1; const b = 2; // Act const result = sum(a, b); // Assert expect(result).to.equal(3); }); });