cc-libs/tests/ready.lua

9 lines
280 B
Lua

-- Smoke test: prove the CC event queue round-trips a custom event.
-- Invoked via `craftos --headless --script tests/ready.lua` from `just test`.
os.queueEvent('craftos-ready');
local ev = os.pullEventRaw();
if ev == 'craftos-ready' then
print('__READY__');
end
os.shutdown();