chore(tests): remove attempting to show cursor in ANSI
Some checks failed
CI / fmt (push) Has been cancelled
CI / typecheck (push) Has been cancelled
CI / test (push) Has been cancelled

This commit is contained in:
Erica Marigold 2024-12-02 11:42:13 +00:00
parent 80d44923fa
commit 3f181c19bd
Signed by: DevComp
GPG key ID: 429EF1C337871656

View file

@ -23,7 +23,7 @@ local STYLE = table.freeze({
--- Clears a the previous line, and moves to its beginning --- Clears a the previous line, and moves to its beginning
local function clear_last_line(): () local function clear_last_line(): ()
return stdio.write("\x1b[A\x1b[K\x1b[0G\x1b[?25h") return stdio.write("\x1b[A\x1b[K\x1b[0G")
end end
local ReporterExt = {} local ReporterExt = {}