From 20ebc86066ee289543f4512ca886f5b833385c87 Mon Sep 17 00:00:00 2001 From: V13Axel Date: Mon, 19 Feb 2024 08:58:32 -0500 Subject: [PATCH] Support for compact output mode --- lua/neotest-pest/init.lua | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lua/neotest-pest/init.lua b/lua/neotest-pest/init.lua index dd8c33c..ad323be 100644 --- a/lua/neotest-pest/init.lua +++ b/lua/neotest-pest/init.lua @@ -145,13 +145,13 @@ function NeotestAdapter.build_spec(args) }) end - -- if config('compact') == true then - -- info("Using compact output") - -- command = vim.tbl_flatten({ - -- command, - -- "--compact", - -- }) - -- end + if config('compact') == true then + info("Using compact output") + command = vim.tbl_flatten({ + command, + "--compact", + }) + end debug("Command:", command)