We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80993a4 commit ede345fCopy full SHA for ede345f
lib/mix/test/mix/tasks/app.start_test.exs
@@ -13,6 +13,8 @@ defmodule Mix.Tasks.App.StartTest do
13
end
14
15
16
+ @moduletag :capture_log
17
+
18
test "compiles and starts the project" do
19
in_fixture("no_mixfile", fn ->
20
Mix.Project.push(AppStartSample)
@@ -42,6 +44,8 @@ defmodule Mix.Tasks.App.StartTest do
42
44
assert List.keyfind(Application.started_applications(), :app_start_sample, 0)
43
45
assert List.keyfind(Application.started_applications(), :logger, 0)
46
end)
47
+ after
48
+ Application.stop(:app_start_sample)
49
50
51
describe "unit tests" do
0 commit comments