epicweb-dev / epic-stack

This is a Full Stack app starter with the foundational things setup and configured for you to hit the ground running on your next EPIC idea.
https://www.epicweb.dev/epic-stack
MIT License
4.32k stars 355 forks source link

fix expires date in playwright addCookies #796

Closed onemen closed 1 month ago

onemen commented 1 month ago

There are type difference between set-cookie-parser and playwright cookies.

expires in cookie-parser is Date | undefined playwright addCookies use number | undefined'

This PR convert the Date to number using getTime