aboutsummaryrefslogtreecommitdiff
path: root/tests/tests.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tests.lua')
-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