-
Nicolas Chevobbe authored
Bug 1712739 - [devtools] Fold custom WebConsoleFront#evaluateJSAsync method into scriptCommand#execute. r=ochameau. 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
Nicolas Chevobbe authoredBug 1712739 - [devtools] Fold custom WebConsoleFront#evaluateJSAsync method into scriptCommand#execute. r=ochameau. 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
.eslintrc.js 241 B
"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"],
};