This commit is contained in:
Lucas Nogueira
2025-05-05 11:08:10 -03:00
parent 72540bd7ac
commit f322e72038
2 changed files with 2 additions and 2 deletions

View File

@@ -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"],

View File

@@ -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"],