Skip to content

Commit

Permalink
Make users manually continue tests after each next-question request f…
Browse files Browse the repository at this point in the history
…or full ehr test suite

Signed-off-by: Vanessa Fotso <[email protected]>
  • Loading branch information
vanessuniq committed Nov 26, 2024
1 parent e1e854b commit 202febb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def cont_test_description
When the DTR application has finished loading the Questionnaire,
including any clinical data requests to support pre-population,
[Click here](#{resume_pass_url}?client_id=#{access_token}) to continue.
[Click here](#{resume_pass_url}?token=#{access_token}) to continue.
DESCRIPTION
end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,18 @@ class DTRFullEHRAdaptiveDinnerQuestionnaireWorkflowGroup < Inferno::TestGroup

group from: :dtr_adaptive_questionnaire_followup_questions,
config: {
options: { next_tag: "followup_#{CLIENT_NEXT_TAG}" }
options: {
accepts_multiple_requests: true,
next_tag: "followup_#{CLIENT_NEXT_TAG}"
}
}

group from: :dtr_adaptive_questionnaire_completion,
config: {
options: { next_tag: "completion_#{CLIENT_NEXT_TAG}" }
options: {
accepts_multiple_requests: true,
next_tag: "completion_#{CLIENT_NEXT_TAG}"
}
}
end
end

0 comments on commit 202febb

Please sign in to comment.