Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: os == 'linux' && os_version == '18.04' && asan OR os == 'linux' && os_version == '18.04' && tsan OR win11_2009 && asan
- Manifest: browser/components/preferences/tests/browser.toml
/* Any copyright is dedicated to the Public Domain.
"use strict";
/*
* This file contains tests for the "Add Engine" subdialog.
*/
add_setup(async function () {
await SpecialPowers.pushPrefEnv({
set: [["browser.urlbar.update2.engineAliasRefresh", true]],
});
});
/**
* Test for searching for the "Add Engine" subdialog.
*/
add_task(async function searchAddEngine() {
await openPreferencesViaOpenPreferencesAPI("paneGeneral", {
leaveOpen: true,
});
await evaluateSearchResults("Add Engine", "oneClickSearchProvidersGroup");
BrowserTestUtils.removeTab(gBrowser.selectedTab);
});