summaryrefslogtreecommitdiffstats
path: root/devtools/client/framework/test/browser_target_support.js
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/client/framework/test/browser_target_support.js')
-rw-r--r--devtools/client/framework/test/browser_target_support.js40
1 files changed, 40 insertions, 0 deletions
diff --git a/devtools/client/framework/test/browser_target_support.js b/devtools/client/framework/test/browser_target_support.js
new file mode 100644
index 0000000000..ff87b9fad4
--- /dev/null
+++ b/devtools/client/framework/test/browser_target_support.js
@@ -0,0 +1,40 @@
+/* Any copyright is dedicated to the Public Domain.
+ * http://creativecommons.org/publicdomain/zero/1.0/ */
+
+// 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();
+}