remove json as a global

This commit is contained in:
2025-12-18 11:20:39 -06:00
parent 04a648a73e
commit aa18a8c8d2
16 changed files with 43 additions and 52 deletions

View File

@@ -2,7 +2,7 @@ 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!`)
log.console(`Original sender got message back: ${msg}. Stopping!`)
// $_.stop() // Removed
})
}, "tests/reply_actor")