Skip to content

Commit

Permalink
fix: màj taille max de la description des aides
Browse files Browse the repository at this point in the history
  • Loading branch information
Shamzic committed Dec 10, 2024
1 parent 94e7ba4 commit c97713c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/benefits-description.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ describe("benefit descriptions", function () {
.replace(/\s\s+/g, " ")
.trim()
expect(innerText.length).toBeGreaterThanOrEqual(10)
expect(innerText.length).toBeLessThanOrEqual(450)
expect(innerText.length).toBeLessThanOrEqual(420)
})

if (benefit.description.includes('target="_blank"')) {
Expand Down

0 comments on commit c97713c

Please sign in to comment.