import { pingCommand } from "../../src/commands/ping"; describe("pingCommand", () => { it("replies with Pong", async () => { const reply = jest.fn().mockResolvedValue(undefined); await pingCommand.execute({ reply } as any); expect(reply).toHaveBeenCalledWith("Pong!"); }); });