WIP: Plan tests
All checks were successful
Test / build (push) Successful in 30s

This commit is contained in:
Ethan Lane 2025-01-11 18:58:35 +00:00
parent 31cc9e056a
commit d794b30bb5
10 changed files with 204 additions and 176 deletions

View file

@ -0,0 +1,3 @@
test.todo("GIVEN pageOption is NOT a number, EXPECT error");
test.todo("GIVEN pageOption is a number, EXPECT interaction updated");

View file

@ -0,0 +1,21 @@
describe("Use", () => {
test.todo("GIVEN subaction is confirm, EXPECT UseConfirm to be called");
test.todo("GIVEN subaction is cancel, EXPECT UseCancel to be called");
test.todo("GIVEN subaction is unknown, EXPECT nothing to be called");
});
describe("UseConfirm", () => {
test.todo("GIVEN effectDetail is not found, EXPECT error");
test.todo("GIVEN EffectHelper.UseEffect failed, EXPECT error");
test.todo("GIVEN EffectHelper.UseEffect succeeded, EXPECT interaction updated");
});
describe("UseCancel", () => {
test.todo("GIVEN effectDetail is not found, EXPECT error");
test.todo("GIVEN effectDetail is found, EXPECT interaction updated");
});