Files
tubestation/browser/base/content/test/webextensions/.eslintrc.js
Bob Silverberg 85404b9e62 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
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,
},
};