fix tests

This commit is contained in:
2025-12-05 23:21:07 -06:00
parent 744f64b83b
commit ea510d609f
75 changed files with 2098 additions and 2164 deletions

10
tests/send.cm Normal file
View File

@@ -0,0 +1,10 @@
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")
}
}