pestphp / pest

Pest is an elegant PHP testing Framework with a focus on simplicity, meticulously designed to bring back the joy of testing in PHP.
https://pestphp.com
MIT License
9.49k stars 343 forks source link

Fix html in descriptions or datasets #1001

Closed faissaloux closed 11 months ago

faissaloux commented 11 months ago

What:

Description:

Termwind raises a StyleNotFound exception when a test dataset or description includes html tags with class attribute, as Termwind tries to style it as html element but the class is not supported.

Example: Screenshot from 2023-11-07 17-36-58 photo_2023-11-07_17-52-38

If the test desciption doesn't include html tags with class attribute, Termwind will raise the same exception for dataset.

I have converted html tags into HTML entities so that Termwind will treat it as normal text. And the result will shows as written in the test description or Dataset:

Screenshot from 2023-11-07 17-50-31

PS: Same thing applies on describe().