From 829f809dc8a050e1b99338f61808c34ca8d1e845 Mon Sep 17 00:00:00 2001 From: Robin Scholtes Date: Wed, 16 Aug 2023 21:30:56 +1200 Subject: [PATCH] eslint --- tests/browser/00_nightwatch_mobile.js | 15 --------------- 1 file changed, 15 deletions(-) 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); -}