diff --git a/src/store/store.spec.js b/src/store/store.spec.js index a69be855b..66def95e6 100644 --- a/src/store/store.spec.js +++ b/src/store/store.spec.js @@ -1154,6 +1154,48 @@ describe("Actions", () => { ]); }); }) + + describe("savePartQuestionAnswers", () => { + test.todo("saves partQuestionAnswers") + + test.todo("there are no previous answers => resets necessary fields") + + // mix up the order to make sure sort is working + test.todo("previous answers match current answers => does not reset fields") + + test.todo("previous answers does not match current answers => resets necessary fields") + }) + + describe("resetMoldingAndCapabilityQuestionAnswersIfNeeded", () => { + test.todo("there are no saved parts => resets necessary fields") + + // mix up the order to make sure sort is working + test.todo("previously saved parts match selected parts => does not reset fields") + + test.todo("previously saved parts do not match selected parts => resets necessary fields") + }) + + describe("saveMoldingQuestionAnswers", () => { + test.todo("saves moldingQuestionAnswers") + + test.todo("there are no previous answers => resets necessary fields") + + // mix up the order to make sure sort is working + test.todo("previous answers match current answers => does not reset fields") + + test.todo("previous answers does not match current answers => resets necessary fields") + }) + + describe("saveCapabilityQuestionAnswers", () => { + test.todo("saves capabilityQuestionAnswers") + + test.todo("there are no previous answers => resets necessary fields") + + // mix up the order to make sure sort is working + test.todo("previous answers match current answers => does not reset fields") + + test.todo("previous answers does not match current answers => resets necessary fields") + }) });