card-drop/tests/buttonEvents/Effects/Use.test.ts
Ethan Lane d794b30bb5
All checks were successful
Test / build (push) Successful in 30s
WIP: Plan tests
2025-01-11 18:58:35 +00:00

21 lines
No EOL
684 B
TypeScript

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