This commit is contained in:
parent
974e298214
commit
43751e5b02
5 changed files with 91 additions and 42 deletions
19
tests/commands/304276391837302787/moons/add.test.ts
Normal file
19
tests/commands/304276391837302787/moons/add.test.ts
Normal file
|
@ -0,0 +1,19 @@
|
|||
describe("GIVEN description is null", () => {
|
||||
test.todo("EXPECT error replied");
|
||||
});
|
||||
|
||||
describe("GIVEN description is greater than 255 characters", () => {
|
||||
test.todo("EXPECT error replied");
|
||||
});
|
||||
|
||||
describe("GIVEN moon count setting exists", () => {
|
||||
test.todo("EXPECT existing entity to be updated");
|
||||
});
|
||||
|
||||
describe("GIVEN moon count setting does not exist", () => {
|
||||
test.todo("EXPECT new entity to be created");
|
||||
});
|
||||
|
||||
test.todo("EXPECT setting to be saved");
|
||||
|
||||
test.todo("EXPECT embed to be replied");
|
29
tests/commands/304276391837302787/moons/list.test.ts
Normal file
29
tests/commands/304276391837302787/moons/list.test.ts
Normal file
|
@ -0,0 +1,29 @@
|
|||
describe("GIVEN moons returned is empty", () => {
|
||||
test.todo("EXPECT none description");
|
||||
});
|
||||
|
||||
describe("GIVEN it is the first page", () => {
|
||||
test.todo("EXPECT Previous button to be disabled");
|
||||
});
|
||||
|
||||
describe("GIVEN it is the last page", () => {
|
||||
test.todo("EXPECT Next button to be disabled");
|
||||
|
||||
describe("GIVEN moon count is greater than the amount of moons in the database", () => {
|
||||
test.todo("EXPECT untracked counter to be shown");
|
||||
});
|
||||
});
|
||||
|
||||
describe("GIVEN moon count is empty", () => {
|
||||
test.todo("EXPECT Next button to be disabled");
|
||||
|
||||
describe("GIVEN moon count is greater than the amount of moons in the database", () => {
|
||||
test.todo("EXPECT untracked counter to be shown");
|
||||
});
|
||||
});
|
||||
|
||||
test.todo("EXPECT interaction to be replied");
|
||||
|
||||
test.todo("EXPECT embed to be replied");
|
||||
|
||||
test.todo("EXPECT row to be replied");
|
Loading…
Add table
Add a link
Reference in a new issue