From 94054ac374cfbe6c9694964e4512ba5c98de5853 Mon Sep 17 00:00:00 2001 From: Eric McBride Date: Sat, 29 Feb 2020 08:22:52 -0600 Subject: [PATCH] Re enable custom formatters --- run.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.go b/run.go index e4c0f84..8af23f4 100644 --- a/run.go +++ b/run.go @@ -277,6 +277,6 @@ func supportsConcurrency(format string) bool { case "events", "pretty", "cucumber": return false default: - return false + return true // enables concurrent custom formatters to work } }