Gzip compression is handled by compression in Express 4. By default, it only compresses responses >=1kb. The theory is that compressing smaller responses might actually increase the size.
The compression test we have now fails because the response is 14-ish bytes, and doesn't get compressed. Is there something we know will be more than 1kb in a test environment? Should we drop the test?
I tested manually with a larger request and compression is working.