fune/browser/components/preferences/tests/browser_open_migration_wizard.js
Mike Conley abe65ca4e2 Bug 1855280 - Remove the ability to switch to the old migration wizard. r=kpatenio,omc-reviewers,settings-reviewers,credential-management-reviewers,negin,aminomancer,mtigley
This removes the pref to re-enable the legacy wizard, and all of the things that used
to read from it.

It also disables the ability to use the legacy wizard from about:welcome with the
aboutWelcomeBehavior feature.

It also removes the closeMigrationWizard utility from BrowserTestUtils, since that
effectively became a thin-wrapper around BrowserTestUtils.removeTab.

Finally, this patch also removes some documentation about the legacy migration wizard,
and tests that specifically check the legacy dialog behaviour.

Differential Revision: https://phabricator.services.mozilla.com/D190716
2023-10-16 18:24:42 +00:00

27 lines
820 B
JavaScript

/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
/**
* Tests the "Import Data" button in the "Import Browser Data" section of
* the General pane of about:preferences launches the Migration Wizard.
*/
add_task(async function test_open_migration_wizard() {
const BUTTON_ID = "data-migration";
await BrowserTestUtils.withNewTab(
{ gBrowser, url: "about:preferences#general" },
async function (browser) {
let button = browser.contentDocument.getElementById(BUTTON_ID);
let wizardReady = BrowserTestUtils.waitForEvent(
browser.contentWindow,
"MigrationWizard:Ready"
);
button.click();
await wizardReady;
Assert.ok(true, "Saw the new Migration Wizard dialog open.");
}
);
});