card-drop/tests/buttonEvents/Effects.test.ts
Ethan Lane 6e6b2a0af6
All checks were successful
Test / build (push) Successful in 13s
Plan tests
2024-11-30 16:38:02 +00:00

25 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");
});
});