diff options
author | EnokMan <416828041@qq.com> | 2020-02-23 08:37:43 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-23 09:37:43 -0500 |
commit | 14129b6c8f3335b215a2d9614c4523e8e3200e82 (patch) | |
tree | dc672d36e39e27a725b8e96c36f18bc6eb5048db /cli/tests/053_import_compression/main.ts | |
parent | 8b646e8657309e57bd4e907f911529e33e3a05fb (diff) |
feat: support brotli compression for fetch API (#4082)
Diffstat (limited to 'cli/tests/053_import_compression/main.ts')
-rw-r--r-- | cli/tests/053_import_compression/main.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/tests/053_import_compression/main.ts b/cli/tests/053_import_compression/main.ts index eb19cc75d..b6f7e2c9a 100644 --- a/cli/tests/053_import_compression/main.ts +++ b/cli/tests/053_import_compression/main.ts @@ -6,3 +6,8 @@ console.log( "http://127.0.0.1:4545/cli/tests/053_import_compression/gziped" ).then(res => res.text()) ); +console.log( + await fetch( + "http://127.0.0.1:4545/cli/tests/053_import_compression/brotli" + ).then(res => res.text()) +); |