Skip to content

Commit

Permalink
fix: limite description fixée à 450
Browse files Browse the repository at this point in the history
  • Loading branch information
Shamzic committed Nov 27, 2024
1 parent d8b1306 commit 3046480
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(600)
expect(innerText.length).toBeLessThanOrEqual(450)
})

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

0 comments on commit 3046480

Please sign in to comment.