-- 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();