Files
cell/tests/send.cm
2025-12-05 23:21:07 -06:00

11 lines
310 B
Plaintext

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