diff options
Diffstat (limited to 'test/http_SUITE.erl')
-rw-r--r-- | test/http_SUITE.erl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/http_SUITE.erl b/test/http_SUITE.erl index f784c50..b536380 100644 --- a/test/http_SUITE.erl +++ b/test/http_SUITE.erl @@ -196,6 +196,7 @@ groups() -> init_per_suite(Config) -> application:start(crypto), + application:start(cowlib), application:start(ranch), application:start(cowboy), Dir = ?config(priv_dir, Config) ++ "/static", @@ -207,6 +208,7 @@ end_per_suite(Config) -> ct_helper:delete_static_dir(Dir), application:stop(cowboy), application:stop(ranch), + application:stop(cowlib), application:stop(crypto), ok. |