CSR-111 Add test.todos
This commit is contained in:
parent
cba4f5ee3d
commit
602512c23f
1 changed files with 42 additions and 0 deletions
|
|
@ -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")
|
||||
})
|
||||
});
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue