Skip to content

Commit

Permalink
fix: date format in test
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Sep 4, 2024
1 parent 6802489 commit 9577441
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ describe('TransferSummary', () => {
expect(screen.getByText('transfer:valuePerUnit: $5.00')).toBeInTheDocument()
expect(screen.getByText('transfer:totalVal: $50.00')).toBeInTheDocument() // 10 * 5 = 50
expect(
screen.getByText('transfer:agreementDt: 12/31/2022')
screen.getByText('transfer:agreementDt: 2022-12-31')
).toBeInTheDocument() // Date formatted
})
})

0 comments on commit 9577441

Please sign in to comment.