cmorten / superdeno

Super-agent driven library for testing Deno HTTP servers.
https://cmorten.github.io/superdeno/
MIT License
124 stars 6 forks source link

Re-introduce multiple cookie headers in test #28

Closed cmorten closed 3 years ago

cmorten commented 3 years ago

It appears the cookie setting code in Opine has regressed https://github.com/asos-craigmorten/opine/issues/117 this means we cannot test that setting multiple cookies works as part of the superdeno test suite.

This issue is to track the resolution of the Opine issue and then re-introduce said commented out tests once it is resolved.

cmorten commented 3 years ago

Turns out this is expected and the test just needs to be updated to use .append() instead of .set(). See the Opine issue for details.