17 lines
No EOL
498 B
TypeScript
17 lines
No EOL
498 B
TypeScript
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");
|
|
});
|
|
}); |