mirror of
https://github.com/tauri-apps/webdriver-example.git
synced 2026-01-31 00:55:20 +01:00
fix type
This commit is contained in:
@@ -14,7 +14,7 @@ exports.config = {
|
||||
"tauri:options": {
|
||||
application: "../../src-tauri/target/debug/tauri-app",
|
||||
},
|
||||
port: process.env.TAURI_DRIVER_PORT || 4444,
|
||||
port: Number(process.env.TAURI_DRIVER_PORT || 4444),
|
||||
},
|
||||
],
|
||||
reporters: ["spec"],
|
||||
|
||||
@@ -14,7 +14,7 @@ exports.config = {
|
||||
"tauri:options": {
|
||||
application: "../../src-tauri/target/debug/tauri-app",
|
||||
},
|
||||
port: process.env.TAURI_DRIVER_PORT || 4444,
|
||||
port: Number(process.env.TAURI_DRIVER_PORT || 4444),
|
||||
},
|
||||
],
|
||||
reporters: ["spec"],
|
||||
|
||||
Reference in New Issue
Block a user