From 8ec592c49ffc0b7a4f7f9764f6eedc273cace4a9 Mon Sep 17 00:00:00 2001 From: Kip Cole Date: Wed, 3 Jul 2024 19:14:50 +1000 Subject: [PATCH] Increase test timeout --- test/test_helper.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_helper.exs b/test/test_helper.exs index a24cd62..4fe9ecd 100644 --- a/test/test_helper.exs +++ b/test/test_helper.exs @@ -4,5 +4,5 @@ Enum.each(paths, &File.rm/1) Application.ensure_all_started(:telemetry) Application.ensure_all_started(:hackney) -ExUnit.configure(exclude: [full: true]) +ExUnit.configure(exclude: [full: true], timeout: 120_000) ExUnit.start()