mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 13:21:05 +00:00
bd625e4e9f
MozReview-Commit-ID: LH0CQOPfoe6 --HG-- extra : rebase_source : 83eaf40c5cbb5e25cfb3f3b5afadf4fbf0422c92
27 lines
547 B
JavaScript
27 lines
547 B
JavaScript
// Parent config file for all devtools browser mochitest files.
|
|
module.exports = {
|
|
"extends": [
|
|
"plugin:mozilla/browser-test"
|
|
],
|
|
// All globals made available in the test environment.
|
|
"globals": {
|
|
"DevToolsUtils": true,
|
|
"gDevTools": true,
|
|
"once": true,
|
|
"synthesizeKeyFromKeyTag": true,
|
|
"TargetFactory": true,
|
|
"waitForTick": true,
|
|
},
|
|
|
|
"parserOptions": {
|
|
"ecmaFeatures": {
|
|
"jsx": true,
|
|
}
|
|
},
|
|
|
|
"rules": {
|
|
// Tests can always import anything.
|
|
"mozilla/reject-some-requires": 0,
|
|
},
|
|
};
|