From ecc59ea0f6cc6376104b20ce90f0abfd321e00a8 Mon Sep 17 00:00:00 2001 From: Pascal Schmid Date: Thu, 14 Mar 2024 07:04:54 +0100 Subject: [PATCH] Properly start Mox the default test command `mix test --no-start` does not start Mox server by default, so we have to start it manually in order to configure it --- test/test_helper.exs | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test_helper.exs b/test/test_helper.exs index 869559e..87b7a72 100644 --- a/test/test_helper.exs +++ b/test/test_helper.exs @@ -1 +1,2 @@ +Application.ensure_all_started(:mox) ExUnit.start()