vylbot-app/tests/commands/304276391837302787/moons.test.ts

17 lines
498 B
TypeScript
Raw Permalink Normal View History

2024-11-01 14:52:38 +00:00
describe("constructor", () => {
test.todo("EXPECT CommandBuilder to be defined correctly");
});
describe("execute", () => {
describe("GIVEN interaction is not a chat input command", () => {
test.todo("EXPECT nothing to happen");
});
describe("GIVEN interaction subcommand is list", () => {
test.todo("EXPECT ListMoons to be called");
});
describe("GIVEN interaction subcommand is add", () => {
test.todo("EXPECT AddMoon to be called");
});
});