feat: Add deployment guide and update README for Coolify setup; include dotenv for environment variable management
This commit is contained in:
@@ -1,10 +1,13 @@
|
||||
import { ChatInputCommandInteraction } from "discord.js";
|
||||
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);
|
||||
await pingCommand.execute({
|
||||
reply,
|
||||
} as unknown as ChatInputCommandInteraction);
|
||||
|
||||
expect(reply).toHaveBeenCalledWith("Pong!");
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user