Skip to content

Commit f322e72

Browse files
committed
fix type
1 parent 72540bd commit f322e72

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

v1/webdriver/webdriverio/wdio.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ exports.config = {
1414
"tauri:options": {
1515
application: "../../src-tauri/target/debug/tauri-app",
1616
},
17-
port: process.env.TAURI_DRIVER_PORT || 4444,
17+
port: Number(process.env.TAURI_DRIVER_PORT || 4444),
1818
},
1919
],
2020
reporters: ["spec"],

v2/webdriver/webdriverio/wdio.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ exports.config = {
1414
"tauri:options": {
1515
application: "../../src-tauri/target/debug/tauri-app",
1616
},
17-
port: process.env.TAURI_DRIVER_PORT || 4444,
17+
port: Number(process.env.TAURI_DRIVER_PORT || 4444),
1818
},
1919
],
2020
reporters: ["spec"],

0 commit comments

Comments
 (0)