26 lines
774 B
TypeScript
26 lines
774 B
TypeScript
|
describe("execute", () => {
|
||
|
describe("GIVEN action in custom id is list", () => {
|
||
|
test.todo("EXPECT list function to be called");
|
||
|
});
|
||
|
});
|
||
|
|
||
|
describe("List", () => {
|
||
|
describe("GIVEN page is a valid number", () => {
|
||
|
test.todo("EXPECT EffectHelper.GenerateEffectEmbed to be called");
|
||
|
|
||
|
test.todo("EXPECT interaction to be updated");
|
||
|
});
|
||
|
|
||
|
describe("GIVEN page in custom id is not supplied", () => {
|
||
|
test.todo("EXPECT interaction to be replied with error");
|
||
|
|
||
|
test.todo("EXPECT interaction to not be updated");
|
||
|
});
|
||
|
|
||
|
describe("GIVEN page in custom id is not a number", () => {
|
||
|
test.todo("EXPECT interaction to be replied with error");
|
||
|
|
||
|
test.todo("EXPECT interaction to not be updated");
|
||
|
});
|
||
|
});
|