forked from mirrors/gecko-dev
Tests that were using `evaluateJSAsync` are updated, either by using the new command, or by awaiting for the `evaluationResult` event. A couple chrome tests were moved to devtools/shared/commands/js/tests/ and turned into browser tests, and some of them were completely removed as we tested the features in mochitests as well. Differential Revision: https://phabricator.services.mozilla.com/D116248
7 lines
241 B
JavaScript
7 lines
241 B
JavaScript
"use strict";
|
|
|
|
// General rule from /.eslintrc.js only accept folders matching **/test*/browser*/
|
|
// where is this folder doesn't match, so manually apply browser test config
|
|
module.exports = {
|
|
extends: ["plugin:mozilla/browser-test"],
|
|
};
|