Skip to content

Commit

Permalink
- test updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Herrera committed Dec 24, 2024
1 parent 0c7acd3 commit e8cc2d8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ describe('Compensation Detail View Component', () => {
expect(compensationFinalizedDate).toHaveTextContent('Jun 12, 2024');
});

it('Displays the Advanced Payment Served Date', async () => {
it.skip('Displays the Advanced Payment Served Date', async () => {
const mockCompensation = getMockApiDefaultCompensation();
const { queryByTestId } = await setup({
claims: [Claims.COMPENSATION_REQUISITION_VIEW],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,14 @@ export const CompensationRequisitionDetailView: React.FunctionComponent<
<SectionField label="Expropriation vesting date" labelWidth="4">
{prettyFormatDate(compensation.expropriationVestingDate)}
</SectionField>
{/* TODO : Remove */}
{/* <SectionField
label="Advanced payment served date"
labelWidth="4"
valueTestId="advanced-payment-served-date"
>
{prettyFormatDate(compensation.advancedPaymentServedDate)}
</SectionField> */}
</>
)}

Expand Down

0 comments on commit e8cc2d8

Please sign in to comment.