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
11 lines
190 B
JavaScript
11 lines
190 B
JavaScript
// Test to create a portal
|
|
|
|
var password = "abc123"
|
|
|
|
$_.portal(e => {
|
|
if (e.password !== password)
|
|
$_.send(e, {reason:"Password does not match."});
|
|
else
|
|
$_.send(e, $_)
|
|
}, 5678);
|