aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorame <[email protected]>2025-11-25 03:44:22 -0600
committerame <[email protected]>2025-11-25 03:44:22 -0600
commite13cc14a618a1ba817f8d667ea333133028f7e47 (patch)
treecc14c4733bef6d2dff287fbfcb9b359f92683524 /tests
parent691a82c3a7ce7e5f43a15f8751cacc792efa339f (diff)
more consistent locals, better test printing
Diffstat (limited to 'tests')
-rw-r--r--tests/tests.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/tests.lua b/tests/tests.lua
index 39c4d12..c95e072 100644
--- a/tests/tests.lua
+++ b/tests/tests.lua
@@ -21,8 +21,12 @@ local handle = assert(io.popen("find tests/units/".. search .." -type f"))
for file in handle:lines() do
total = total + 1
+ print(file)
local f = loadfile(file)()
+ --move up one line and clear it
+ io.write("\27[1A\27[K")
+
if f == true then
yay(file)
else