Skip to content

Commit

Permalink
Add rate submission date to summary page
Browse files Browse the repository at this point in the history
  • Loading branch information
haworku committed Nov 13, 2023
1 parent 1b30912 commit bc58c3e
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,16 @@ describe('SingleRateSummarySection', () => {
name: 'Rate amendment effective dates',
})
).toBeInTheDocument()
expect(
screen.getByRole('definition', {
name: 'Rate submission date',
})
).toBeInTheDocument()
expect(
screen.getByRole('definition', {
name: 'Rate submission date',
})
).toHaveTextContent('10/16/2023')
expect(
screen.getByRole('definition', { name: 'Certifying actuary' })
).toBeInTheDocument()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,14 @@ export const SingleRateSummarySection = ({
/>
}
/>
<DataDetail
id="rateSubmissionDate"
label="Rate submission date"
explainMissingData={!isSubmitted}
children={formatCalendarDate(
rate.initiallySubmittedAt
)}
/>
<DataDetail
id="rateCapitationType"
label="Does the actuary certify capitation rates specific to each rate cell or a rate range?"
Expand Down

0 comments on commit bc58c3e

Please sign in to comment.