39 lines
1,013 B
TypeScript
39 lines
1,013 B
TypeScript
describe("GIVEN valid input", () => {
|
|
test.todo("EXPECT interaction replied");
|
|
|
|
test.todo("EXPECT embed information to be correct");
|
|
|
|
test.todo("EXPECT component information to be correct");
|
|
|
|
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 interaction.guild is undefined", () => {
|
|
test.todo("EXPECT nothing to happen");
|
|
});
|
|
|
|
describe("GIVEN userId is not supplied", () => {
|
|
test.todo("EXPECT nothing to happen");
|
|
});
|
|
|
|
describe("GIVEN page is not supplied", () => {
|
|
test.todo("EXPECT nothing to happen");
|
|
});
|
|
|
|
describe("GIVEN moons object is undefined", () => {
|
|
test.todo("EXPECT error replied");
|
|
|
|
test.todo("EXPECT function returned");
|
|
});
|
|
|
|
describe("GIVEN moons for user is 0", () => {
|
|
test.todo("EXPECT error replied");
|
|
|
|
test.todo("EXPECT function returned");
|
|
});
|