Bug 1462223: Follow-up: Ignore worker bootstrap test extension in unrelated test. r=bustage,test-only CLOSED TREE

MozReview-Commit-ID: HoEEfC6CuLq
This commit is contained in:
Kris Maglione 2018-05-19 18:54:52 -07:00
parent 4501c2b5b9
commit 7ea7d29fbb

View File

@ -18,7 +18,7 @@ async function test() {
let allCompatible = true; let allCompatible = true;
for (let a of aAddons) { for (let a of aAddons) {
// Ignore plugins. // Ignore plugins.
if (a.type == "plugin") if (a.type == "plugin" || a.id == "workerbootstrap-test@mozilla.org")
continue; continue;
ok(a.isCompatible, a.type + " " + a.name + " " + a.version + " should be compatible"); ok(a.isCompatible, a.type + " " + a.name + " " + a.version + " should be compatible");