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

View File

@@ -1,15 +0,0 @@
// This tests forceful killing of an underling that may even be in the middle of a turn
$_.start(e => {
log.console(`got message from hanger: ${e.type}`)
if (e.type == 'greet')
$_.delay(_ => {
log.console(`sending stop message to hanger`)
$_.stop(e.actor)
}, 1)
if (e.type == 'disrupt') {
log.console(`underling successfully killed.`)
$_.stop()
}
}, 'hang')