CSR-111 Add test.todos

This commit is contained in:
Katie 2022-08-30 14:37:40 -04:00
parent cba4f5ee3d
commit 602512c23f

View file

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