mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
b2464f8fa0
Drop linting of the .eslintrc.js config files. Fix some minor errors in the code (missing let/const, undefined vars). Let eslint know that some files get their globals from other places (typically via xul script tags). MozReview-Commit-ID: CwxuwPtRUr6 --HG-- rename : browser/components/contextualidentity/test/browser/.eslintrc.js => browser/components/syncedtabs/test/browser/.eslintrc.js rename : browser/components/contextualidentity/test/browser/.eslintrc.js => browser/extensions/webcompat/test/browser/.eslintrc.js extra : rebase_source : 9026aac49953d941853022cbab3e33d7d2f2fa21
17 lines
414 B
JavaScript
17 lines
414 B
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
/* import-globals-from ../head.js */
|
|
|
|
"use strict";
|
|
|
|
add_task(function* capture() {
|
|
if (!shouldCapture()) {
|
|
return;
|
|
}
|
|
let sets = ["Preferences"];
|
|
|
|
yield TestRunner.start(sets, "preferences");
|
|
});
|