fixup! rip out all unit tests

This commit is contained in:
Kartik K. Agaram 2024-06-19 21:53:57 -07:00
parent 3416e066a7
commit e411c45ded
1 changed files with 0 additions and 8 deletions

View File

@ -2,10 +2,7 @@ run = {}
Editor_state = {} Editor_state = {}
-- called both in tests and real run
function run.initialize_globals() function run.initialize_globals()
-- tests currently mostly clear their own state
-- blinking cursor -- blinking cursor
Cursor_time = 0 Cursor_time = 0
end end
@ -47,11 +44,6 @@ function run.initialize(arg)
end end
end end
function print_and_log(s)
print(s)
log(3, s)
end
function run.load_settings() function run.load_settings()
local font = love.graphics.newFont(Settings.font_height) local font = love.graphics.newFont(Settings.font_height)
-- set up desired window dimensions and make window resizable -- set up desired window dimensions and make window resizable