Skip to content

Commit 42083c9

Browse files
committed
stop hex app in test fixture
Fixes #627
1 parent 78c9516 commit 42083c9

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

apps/elixir_ls_utils/test/support/mix_test.case.ex

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,11 @@ defmodule ElixirLS.Utils.MixTest.Case do
7575
previous = :code.all_loaded()
7676
project_stack = clear_project_stack!()
7777

78-
ExUnit.CaptureLog.capture_log(fn -> Application.stop(:mix) end)
78+
ExUnit.CaptureLog.capture_log(fn ->
79+
Application.stop(:mix)
80+
Application.stop(:hex)
81+
end)
82+
7983
Application.start(:mix)
8084

8185
try do

0 commit comments

Comments
 (0)