vylbot-app/tests/buttonEvents/moons/list.test.ts

43 lines
1.2 KiB
TypeScript
Raw Normal View History

2024-10-31 16:56:36 +00:00
describe("GIVEN interaction.guild is null", () => {
test.todo("EXPECT function to return");
2024-10-30 09:35:34 +00:00
});
2024-10-31 16:56:36 +00:00
describe("GIVEN userId parameter is undefined", () => {
test.todo("EXPECT function to return");
2024-10-30 09:35:34 +00:00
});
2024-10-31 16:56:36 +00:00
describe("GIVEN page parameter is undefined", () => {
test.todo("EXPECT function to return");
2024-10-30 09:35:34 +00:00
});
2024-10-31 16:56:36 +00:00
describe("GIVEN no moons for the user is returned", () => {
test.todo("EXPECT error replied");
2024-10-30 09:35:34 +00:00
});
2024-10-31 16:56:36 +00:00
describe("GIVEN no moons on current page", () => {
test.todo("EXPECT description to say so");
2024-10-30 09:35:34 +00:00
});
2024-10-31 16:56:36 +00:00
describe("GIVEN happy flow", () => {
test.todo("EXPECT moons to be fetched");
2024-10-30 09:35:34 +00:00
2024-10-31 16:56:36 +00:00
test.todo("EXPECT embed to be updated");
2024-10-30 09:35:34 +00:00
2024-10-31 16:56:36 +00:00
test.todo("EXPECT row to be updated");
2024-10-30 09:35:34 +00:00
2024-10-31 16:56:36 +00:00
describe("GIVEN it is the first page", () => {
test.todo("EXPECT Previous button to be disabled");
2024-10-30 09:35:34 +00:00
});
2024-10-31 16:56:36 +00:00
describe("GIVEN it is the last page", () => {
test.todo("EXPECT Next button to be disabled");
2024-10-30 09:35:34 +00:00
2024-10-31 16:56:36 +00:00
describe("GIVEN there are more moons in the counter than in the database", () => {
test.todo("EXPECT untracked counter to be present");
});
});
2024-10-30 09:35:34 +00:00
2024-10-31 16:56:36 +00:00
describe("GIVEN no moons on the current page", () => {
test.todo("EXPECT Next button to be disabled");
});
2024-10-30 09:35:34 +00:00
});