Skip to content

Commit

Permalink
fix: TC comments and naming
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin9foong committed Oct 15, 2024
1 parent 07343cc commit f15b135
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -638,7 +638,7 @@ describe('multirespondent-submission.service', () => {
},
} as FieldResponsesV3

const fourStepApprovalWorkflow: FormWorkflowStepDto[] = [
const fiveStepApprovalWorkflow: FormWorkflowStepDto[] = [
{
_id: stepOneId,
workflow_type: WorkflowType.Dynamic,
Expand Down Expand Up @@ -673,14 +673,14 @@ describe('multirespondent-submission.service', () => {
},
]

const currentStepNumber = 1 // 2nd step of 3 steps workflow
const currentStepNumber = 1 // 2nd step of 5 steps workflow

// Act
await performMultiRespondentPostSubmissionUpdateActions({
submissionId: mockSubmissionId,
form: {
_id: mockFormId,
workflow: fourStepApprovalWorkflow,
workflow: fiveStepApprovalWorkflow,
emails: [expectedEmails[1], expectedEmails[2]],
stepsToNotify: [stepOneId, stepThreeId, stepFourId, stepFiveId],
} as IPopulatedMultirespondentForm,
Expand Down

0 comments on commit f15b135

Please sign in to comment.