Some checks failed
Build and Deploy / package-dist (push) Blocked by required conditions
Build and Deploy / deploy-itch (push) Blocked by required conditions
Build and Deploy / deploy-gitea (push) Blocked by required conditions
Build and Deploy / build-linux (push) Successful in 1m16s
Build and Deploy / build-windows (CLANG64) (push) Failing after 10m57s
15 lines
328 B
JavaScript
15 lines
328 B
JavaScript
// Creates a portal and a separate actor to contact
|
|
|
|
var os = use('os')
|
|
|
|
var children = []
|
|
|
|
$_.start(e => {
|
|
console.log('Portal actor finished starting.')
|
|
children.push(e.actor)
|
|
$_.start(e => {
|
|
children.push(e.actor)
|
|
console.log('Contact actor finished starting.')
|
|
}, "tests/contact.js")
|
|
}, "tests/portal.js")
|