Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
add_task(async function () {
let path = getRootDirectory(gTestPath).substring(
);
await SpecialPowers.pushPrefEnv({
set: [
[
"toolkit.mozprotocol.url",
],
],
});
await BrowserTestUtils.withNewTab("about:blank", async function () {
await BrowserTestUtils.waitForLocationChange(
gBrowser,
);
ok(true, "Made it to the expected page");
});
});