Plan tests
This commit is contained in:
parent
67eafa695c
commit
5ed31d08d1
2 changed files with 20 additions and 0 deletions
3
tests/buttonEvents/304276391837302787/moons.test.ts
Normal file
3
tests/buttonEvents/304276391837302787/moons.test.ts
Normal file
|
@ -0,0 +1,3 @@
|
|||
describe("GIVEN interaction action is list", () => {
|
||||
test.todo("EXPECT List function to be called");
|
||||
});
|
17
tests/commands/304276391837302787/moons.test.ts
Normal file
17
tests/commands/304276391837302787/moons.test.ts
Normal file
|
@ -0,0 +1,17 @@
|
|||
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");
|
||||
});
|
||||
});
|
Loading…
Reference in a new issue