diff --git a/lib/container.js b/lib/container.js index badc08ad9..68b26ecce 100644 --- a/lib/container.js +++ b/lib/container.js @@ -574,4 +574,4 @@ function normalizeAndJoin(basePath, subPath) { // Join the paths using POSIX-style return path.posix.join(normalizedBase, normalizedSub) -} \ No newline at end of file +} diff --git a/lib/helper/Appium.js b/lib/helper/Appium.js index eb26ca56f..fcb304263 100644 --- a/lib/helper/Appium.js +++ b/lib/helper/Appium.js @@ -384,7 +384,7 @@ class Appium extends Webdriver { _buildAppiumEndpoint() { const { protocol, port, hostname, path } = this.browser.options // Ensure path does NOT end with a slash to prevent double slashes - const normalizedPath = path.replace(/\/$/, ''); + const normalizedPath = path.replace(/\/$/, '') // Build path to Appium REST API endpoint return `${protocol}://${hostname}:${port}${normalizedPath}/session/${this.browser.sessionId}` } diff --git a/package.json b/package.json index 94861dfc3..d637ec3fc 100644 --- a/package.json +++ b/package.json @@ -167,9 +167,9 @@ "ts-node": "10.9.2", "tsd": "^0.31.0", "tsd-jsdoc": "2.5.0", - "typedoc": "0.27.7", + "typedoc": "0.27.9", "typedoc-plugin-markdown": "4.4.2", - "typescript": "5.7.3", + "typescript": "5.8.2", "wdio-docker-service": "3.2.1", "webdriverio": "9.7.2", "xml2js": "0.6.2",