mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-06-12 16:28:53 +00:00
42 lines
1.3 KiB
JavaScript
42 lines
1.3 KiB
JavaScript
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
|
|
/* vim: set ft=javascript ts=2 et sw=2 tw=80: */
|
|
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
"use strict";
|
|
|
|
// Test that the Addon Debugger works when devtools.debugger.workers is enabled.
|
|
// Workers controller cannot be used when debugging an Addon actor.
|
|
|
|
const ADDON_ID = "jid1-ami3akps3baaeg@jetpack";
|
|
const ADDON_PATH = "addon3.xpi";
|
|
const ADDON_URL = getTemporaryAddonURLFromPath(ADDON_PATH);
|
|
|
|
function test() {
|
|
Task.spawn(function* () {
|
|
info("Enable worker debugging.");
|
|
yield new Promise(resolve => {
|
|
SpecialPowers.pushPrefEnv({
|
|
"set": [["devtools.debugger.workers", true]]
|
|
}, resolve);
|
|
});
|
|
|
|
let addon = yield addTemporaryAddon(ADDON_PATH);
|
|
let addonDebugger = yield initAddonDebugger(ADDON_ID);
|
|
|
|
is(addonDebugger.title,
|
|
`Developer Tools - browser_dbg_addon3 - ${ADDON_URL}`,
|
|
"Saw the right toolbox title.");
|
|
|
|
info("Check that groups and sources are displayed.");
|
|
let groups = yield addonDebugger.getSourceGroups();
|
|
is(groups.length, 2, "Should be only two groups.");
|
|
let sources = groups[0].sources;
|
|
is(sources.length, 2, "Should be two sources");
|
|
|
|
yield addonDebugger.destroy();
|
|
yield removeAddon(addon);
|
|
finish();
|
|
});
|
|
}
|