11 lines
293 B
Plaintext
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")
|
|
}
|
|
}
|