fune/browser/extensions/webcompat/test/browser_check_installed.js
Mark Banner 4fb45e5b8c Bug 1365412 - Clean up various ESLint global definitions in browser/. r=mossop
MozReview-Commit-ID: JqAm9x1XGCM

--HG--
extra : rebase_source : e9215288195f1fe683832db53d87dbe77c697b4c
2017-05-16 22:22:42 +01:00

17 lines
720 B
JavaScript

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
"use strict";
add_task(async function installed() {
let addon = await new Promise(
(resolve) => AddonManager.getAddonByID("webcompat@mozilla.org", resolve)
);
isnot(addon, null, "Webcompat addon should exist");
is(addon.name, "Web Compat");
ok(addon.isCompatible, "Webcompat addon is compatible with Firefox");
ok(!addon.appDisabled, "Webcompat addon is not app disabled");
ok(addon.isActive, "Webcompat addon is active");
is(addon.type, "extension", "Webcompat addon is type extension");
});