aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/req_SUITE.erl6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/req_SUITE.erl b/test/req_SUITE.erl
index f57908c..5318840 100644
--- a/test/req_SUITE.erl
+++ b/test/req_SUITE.erl
@@ -23,7 +23,11 @@
%% ct.
suite() ->
- [{timetrap, 30000}].
+ Timeout = case os:type() of
+ {win32, _} -> 60000;
+ _ -> 30000
+ end,
+ [{timetrap, Timeout}].
all() ->
cowboy_test:common_all().