fix linting errors in e2e

pull/5062/head
Joseph Izang 3 months ago committed by Aniket
parent 2b75b9cc17
commit cf152e5ba0
  1. 2
      apps/remix-ide-e2e/src/commands/refreshPage.ts
  2. 2
      apps/remix-ide-e2e/src/helpers/init.ts

@ -1,4 +1,4 @@
import {NightwatchBrowser} from 'nightwatch'
import { NightwatchBrowser } from 'nightwatch'
import EventEmitter from 'events'
class RefreshPage extends EventEmitter {

@ -1,3 +1,4 @@
/* eslint-disable prefer-rest-params */
import { NightwatchBrowser } from 'nightwatch'
require('dotenv').config()
@ -7,6 +8,7 @@ type LoadPlugin = {
url: string
}
// eslint-disable-next-line @typescript-eslint/no-unused-vars
export default function (browser: NightwatchBrowser, callback: VoidFunction, url?: string, preloadPlugins = true, loadPlugin?: LoadPlugin, hideToolTips: boolean = true): void {
browser
.url(url || 'http://127.0.0.1:8080')

Loading…
Cancel
Save