cc-libs/tests/ready.lua
2026-06-08 04:28:56 +02:00

9 lines
289 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('__TRAPOS_TEST_OK__');
end
os.shutdown();