mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
45 lines
1.1 KiB
Plaintext
45 lines
1.1 KiB
Plaintext
// Parent config file for all devtools browser mochitest files.
|
|
{
|
|
"rules": {
|
|
// Only disallow non-global unused vars, so that head.js does not produce
|
|
// errors.
|
|
"no-unused-vars": [2, {"vars": "local"}]
|
|
},
|
|
// All globals made available in the test environment.
|
|
"globals": {
|
|
"add_task": true,
|
|
"Assert": true,
|
|
"BrowserTestUtils": true,
|
|
"content": true,
|
|
"ContentTask": true,
|
|
"document": true,
|
|
"EventUtils": true,
|
|
"executeSoon": true,
|
|
"export_assertions": true,
|
|
"finish": true,
|
|
"gBrowser": true,
|
|
"gDevTools": true,
|
|
"getRootDirectory": true,
|
|
"getTestFilePath": true,
|
|
"gTestPath": true,
|
|
"info": true,
|
|
"is": true,
|
|
"isnot": true,
|
|
"navigator": true,
|
|
"ok": true,
|
|
"promise": true,
|
|
"registerCleanupFunction": true,
|
|
"requestLongerTimeout": true,
|
|
"setTimeout": true,
|
|
"SimpleTest": true,
|
|
"SpecialPowers": true,
|
|
"todo": true,
|
|
"todo_is": true,
|
|
"todo_isnot": true,
|
|
"waitForClipboard": true,
|
|
"waitForExplicitFinish": true,
|
|
"waitForFocus": true,
|
|
"window": true,
|
|
}
|
|
}
|