"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const ping_1 = require("../../src/commands/ping"); describe("pingCommand", () => { it("replies with Pong", async () => { const reply = jest.fn().mockResolvedValue(undefined); await ping_1.pingCommand.execute({ reply }); expect(reply).toHaveBeenCalledWith("Pong!"); }); }); //# sourceMappingURL=ping.test.js.map