@@ -65,7 +65,8 @@ defmodule ExUnit.CLIFormatter do
65
65
{ :noreply , update_test_timings ( config , test ) }
66
66
end
67
67
68
- def handle_cast ( { :test_finished , % ExUnit.Test { state: { :excluded , _ } } = test } , config ) do
68
+ def handle_cast ( { :test_finished , % ExUnit.Test { state: { :excluded , reason } } = test } , config )
69
+ when is_binary ( reason ) do
69
70
if config . trace , do: IO . puts ( trace_test_excluded ( test ) )
70
71
71
72
test_counter = update_test_counter ( config . test_counter , test )
@@ -74,7 +75,8 @@ defmodule ExUnit.CLIFormatter do
74
75
{ :noreply , config }
75
76
end
76
77
77
- def handle_cast ( { :test_finished , % ExUnit.Test { state: { :skipped , _ } } = test } , config ) do
78
+ def handle_cast ( { :test_finished , % ExUnit.Test { state: { :skipped , reason } } = test } , config )
79
+ when is_binary ( reason ) do
78
80
if config . trace do
79
81
IO . puts ( skipped ( trace_test_skipped ( test ) , config ) )
80
82
else
@@ -87,7 +89,11 @@ defmodule ExUnit.CLIFormatter do
87
89
{ :noreply , config }
88
90
end
89
91
90
- def handle_cast ( { :test_finished , % ExUnit.Test { state: { :invalid , _ } } = test } , config ) do
92
+ def handle_cast (
93
+ { :test_finished ,
94
+ % ExUnit.Test { state: { :invalid , % ExUnit.TestModule { state: { :failed , _ } } } } = test } ,
95
+ config
96
+ ) do
91
97
if config . trace do
92
98
IO . puts ( invalid ( trace_test_result ( test ) , config ) )
93
99
else
0 commit comments