Files
cell/tests/send.cm
2025-12-18 18:43:23 -06:00

11 lines
293 B
Plaintext

return {
test_send: function() {
$start(e => {
send(e.actor, { message: "Hello! Good to go?" }, msg => {
log.console(`Original sender got message back: ${msg}. Stopping!`)
// $stop() // Removed
})
}, "tests/reply_actor")
}
}