Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump webdriverio to 7.25.4 #278

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"dependencies": {
"global-agent": "^2.1.12",
"saucelabs": "6.2.2",
"webdriverio": "^6.7.0"
"webdriverio": "7.25.4"
},
"license": "MIT",
"devDependencies": {
Expand All @@ -56,7 +56,7 @@
"karma": "^5.2.3",
"karma-jasmine": "^4.0.1",
"semantic-release": "17.3.7",
"typescript": "^4.1.3"
"typescript": "^4.8.4"
},
"contributors": [
"Mark Ethan Trostler <[email protected]>",
Expand Down
4 changes: 2 additions & 2 deletions src/launcher/launcher.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { remote, BrowserObject } from "webdriverio";
import { remote, Browser } from "webdriverio";
import SauceLabsAPI from "saucelabs";
import { processConfig } from "../process-config";
import { BrowserMap } from "../browser-info";
import { waitUntil } from "../utils";

// Array of connected drivers. This is useful for quitting all connected drivers on kill.
let connectedDrivers: Map<string, BrowserObject> = new Map();
let connectedDrivers: Map<string, Browser<'async'>> = new Map();

export function SaucelabsLauncher(
args,
Expand Down
5 changes: 3 additions & 2 deletions src/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
"compilerOptions": {
"module": "commonjs",
"target": "es2015",
"lib": ["es2015"],
"lib": ["es2015", "dom"],
"moduleResolution": "node",
"sourceMap": true,
"outDir": "../dist"
"outDir": "../dist",
"types": ["webdriverio/async"]
},
"files": [
"index.ts"
Expand Down
Loading