Plan tests
All checks were successful
Test / build (push) Successful in 13s

This commit is contained in:
Ethan Lane 2024-11-30 16:38:02 +00:00
parent 2a7006229a
commit 6e6b2a0af6
3 changed files with 80 additions and 0 deletions

View file

@ -279,3 +279,27 @@ describe("HasEffect", () => {
});
});
});
describe("GenerateEffectEmbed", () => {
test.todo("EXPECT UserEffect.FetchAllByUserIdPaginated to be called");
describe("GIVEN there are no effects returned", () => {
test.todo("EXPECT embed generated");
test.todo("EXPECT row generated");
});
describe("GIVEN there are effects returned", () => {
test.todo("EXPECT embed generated");
test.todo("EXPECT row generated");
describe("AND it is the first page", () => {
test.todo("EXPECT Previous button to be disabled");
});
describe("AND it is the last page", () => {
test.todo("EXPECT Next button to be disabled");
});
});
});