Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

/* Any copyright is dedicated to the Public Domain.
// Test support methods on Target, such as `hasActor` and `getTrait`.
async function testTarget(client, target) {
is(
target.hasActor("inspector"),
true,
"target.hasActor() true when actor exists."
);
is(
target.hasActor("notreal"),
false,
"target.hasActor() false when actor does not exist."
);
is(
target.getTrait("giddyup"),
undefined,
"target.getTrait() returns undefined when trait does not exist"
);
close(target, client);
}
// Ensure target is closed if client is closed directly
function test() {
waitForExplicitFinish();
getParentProcessActors(testTarget);
}
function close(target, client) {
target.on("target-destroyed", () => {
ok(true, "Target was destroyed");
finish();
});
client.close();
}