From d79eb30b6aa9485de3c7741b225b37ec7fe927ba Mon Sep 17 00:00:00 2001 From: Marc Jakobi Date: Tue, 11 Jun 2024 21:31:06 +0200 Subject: [PATCH] tests: add `verbose = true` to `all` busted test config --- .busted | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.busted b/.busted index 61d98b0..a1f5f8d 100644 --- a/.busted +++ b/.busted @@ -3,11 +3,12 @@ return { coverage = false, lpath = "lua/?.lua;lua/?/init.lua", lua = "~/.luarocks/bin/nlua", + verbose = true, }, default = { - verbose = true + verbose = true, }, tests = { - verbose = true + verbose = true, }, }