gecko-dev/devtools/server/tests/unit/test_attach.js

32 строки
969 B
JavaScript

/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
const { ThreadFront } = require("devtools/shared/fronts/thread");
const {
BrowsingContextTargetFront,
} = require("devtools/shared/fronts/targets/browsing-context");
/**
* Very naive test that checks threadClearTest helper.
* It ensures that the thread front is correctly attached.
*/
add_task(
threadFrontTest(({ threadFront, debuggee, client, targetFront }) => {
ok(true, "Thread actor was able to attach");
ok(threadFront instanceof ThreadFront, "Thread Front is valid");
Assert.equal(threadFront.state, "attached", "Thread Front is resumed");
Assert.equal(
String(debuggee),
"[object Sandbox]",
"Debuggee client is valid"
);
ok(client instanceof DebuggerClient, "Client is valid");
ok(
targetFront instanceof BrowsingContextTargetFront,
"TargetFront is valid"
);
})
);