Bug 1581889 - Fix browser_openImportCSV.js not cleaning up logins after the test runs. r=dimi

Differential Revision: https://phabricator.services.mozilla.com/D123974
This commit is contained in:
Tim Giles 2021-08-31 13:58:35 +00:00
Родитель c7fdc790cc
Коммит f11232d02a
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -257,6 +257,12 @@ class CsvImportHelper {
const random = Math.round(Math.random() * 100000001);
add_task(async function setup() {
registerCleanupFunction(() => {
Services.logins.removeAllUserFacingLogins();
});
});
add_task(async function test_open_import_one_item_from_csv() {
await BrowserTestUtils.withNewTab(
{ gBrowser, url: "about:logins" },