diff --git a/tests/browser/00_nightwatch_mobile.js b/tests/browser/00_nightwatch_mobile.js index 996cf1c8a3..de8037b5c6 100644 --- a/tests/browser/00_nightwatch_mobile.js +++ b/tests/browser/00_nightwatch_mobile.js @@ -6,8 +6,6 @@ * @license Apache-2.0 */ -const utils = require("./browserUtils.js"); - module.exports = { // desktop UI before: browser => { @@ -154,16 +152,3 @@ module.exports = { browser.end(); } }; - -/** - * Clears the current recipe and loads a new operation. - * - * @param {string} opName - * @param {Browser} browser - */ -function loadOp(opName, browser) { - return browser - .useCss() - .click("#clr-recipe") - .urlHash("op=" + opName); -}