This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import fs from 'fs'; | |
import { createServer as createHttpServer } from 'http'; | |
import { createServer as createHttpsServer } from 'https'; | |
import { WebSocketServer } from 'ws'; | |
import sl from 'saucelabs'; | |
import { remote } from 'webdriverio'; | |
import ip from 'ip'; | |
const protocol = 'http'; | |
const localIp = ip.address(); |
OlderNewer