@zerospacegg/anrubic
Version:
Anrubic - ZeroSpace.gg MCP Server for AI agents to access game data
17 lines (12 loc) • 458 B
text/typescript
// Test runner for Anrubic MCP Server
import { PassThrough } from "node:stream";
import { run } from "node:test";
import { spec } from "node:test/reporters";
async function runTests() {
console.log("🧪 Running Anrubic MCP Server Tests...\n");
const stream = run({
files: ["test/mcp-protocol.test.ts", "test/mcp-tools.test.ts"],
});
stream.compose(new spec()).pipe(new PassThrough()).pipe(process.stdout);
}
runTests().catch(console.error);