diff options
Diffstat (limited to 'test/ws_SUITE.erl')
-rw-r--r-- | test/ws_SUITE.erl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/ws_SUITE.erl b/test/ws_SUITE.erl index e341e10..c47c293 100644 --- a/test/ws_SUITE.erl +++ b/test/ws_SUITE.erl @@ -41,7 +41,9 @@ init_per_group(Name = autobahn, Config) -> {skip, "Autobahn Test Suite not installed."}; _ -> {ok, _} = cowboy:start_http(Name, 100, [{port, 33080}], [ - {env, [{dispatch, init_dispatch()}]}]), + {env, [{dispatch, init_dispatch()}]}, + {compress, true} + ]), Config end; init_per_group(Name = ws, Config) -> |