Skip to content

Commit

Permalink
Fix unit test failure (#32261)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mottie authored Oct 4, 2024
1 parent 334aa38 commit 50b3b30
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,11 @@ describe('ConfirmationPageV2', () => {
`You submitted the request on ${date}`,
);
// expect($('va-loading-indicator', container)).to.exist;

const h2s = $$('h2', container);
expect(h2s.length).to.eq(4);
expect(h2s.length).to.eq(5);
expect(h2s.map(el => el.textContent)).to.deep.equal([
// `You submitted your Board Appeal request on ${date}`,
'Request a Board Appeal', // print only header
'Your Board Appeal request submission is in progress',
'What to expect next',
'How to contact us if you have questions',
Expand Down

0 comments on commit 50b3b30

Please sign in to comment.