Attempting to upgrade superdeno to support Deno ^1.9.0 noticing that the cookie tests are failing because Opine is not appending cookies set in headers, instead incorrectly overwriting them...
This is now the expected behaviour of set following the adjustment of the underlying Header class in Deno to match the web specification. To append cookies instead use .append() not .set().
Issue
Setup:
Details
Attempting to upgrade superdeno to support Deno ^1.9.0 noticing that the cookie tests are failing because Opine is not appending cookies set in headers, instead incorrectly overwriting them...