gecko-dev/browser/base/content/test/webextensions/.eslintrc.js
Bob Silverberg 2c05852936 Bug 1369581 - Requesting an optional permission that does not cause a prompt should succeed, r=aswan
Currently, if an extension requests one or more optional permissions,
and those permissions do not cause a prompt to be displayed,
the framework will reject that request and not grant any permissions.
This should be the opposite in that we should grant permission to
those optional permissions event though no prompt is displayed.

MozReview-Commit-ID: 6SeyFSv92Lo

--HG--
extra : rebase_source : 08ba28ca7920c9d37af28afa24d9602813b4470b
2017-06-02 09:14:22 -04:00

12 lines
135 B
JavaScript

"use strict";
module.exports = {
"extends": [
"plugin:mozilla/browser-test"
],
"env": {
"webextensions": true,
},
};