diff options
Diffstat (limited to 'cli/tests/unit/serve_test.ts')
-rw-r--r-- | cli/tests/unit/serve_test.ts | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cli/tests/unit/serve_test.ts b/cli/tests/unit/serve_test.ts index cfc2710f6..8ab5209df 100644 --- a/cli/tests/unit/serve_test.ts +++ b/cli/tests/unit/serve_test.ts @@ -2153,16 +2153,16 @@ const compressionTestCases = [ // out: { "Content-Type": "text/plain" }, // expect: null, // }, - { name: "Uncompressible", length: 1024, in: {}, out: {}, expect: null }, + { name: "Incompressible", length: 1024, in: {}, out: {}, expect: null }, { - name: "UncompressibleAcceptGzip", + name: "IncompressibleAcceptGzip", length: 1024, in: { "Accept-Encoding": "gzip" }, out: {}, expect: null, }, { - name: "UncompressibleType", + name: "IncompressibleType", length: 1024, in: { "Accept-Encoding": "gzip" }, out: { "Content-Type": "text/fake" }, @@ -2190,21 +2190,21 @@ const compressionTestCases = [ expect: "br", }, { - name: "UncompressibleRange", + name: "IncompressibleRange", length: 1024, in: { "Accept-Encoding": "gzip" }, out: { "Content-Type": "text/plain", "Content-Range": "1" }, expect: null, }, { - name: "UncompressibleCE", + name: "IncompressibleCE", length: 1024, in: { "Accept-Encoding": "gzip" }, out: { "Content-Type": "text/plain", "Content-Encoding": "random" }, expect: null, }, { - name: "UncompressibleCC", + name: "IncompressibleCC", length: 1024, in: { "Accept-Encoding": "gzip" }, out: { "Content-Type": "text/plain", "Cache-Control": "no-transform" }, |