Tests: extend node bridge server timeout
This commit is contained in:
committed by
Peter Steinberger
parent
d42f767d0c
commit
336a1ad9cf
@@ -58,6 +58,9 @@ async function waitForSocketConnect(socket: net.Socket) {
|
|||||||
describe("node bridge server", () => {
|
describe("node bridge server", () => {
|
||||||
let baseDir = "";
|
let baseDir = "";
|
||||||
const pairingTimeoutMs = process.platform === "win32" ? 8000 : 3000;
|
const pairingTimeoutMs = process.platform === "win32" ? 8000 : 3000;
|
||||||
|
const suiteTimeoutMs = process.platform === "win32" ? 20000 : 10000;
|
||||||
|
|
||||||
|
vi.setTimeout(suiteTimeoutMs);
|
||||||
|
|
||||||
const pickNonLoopbackIPv4 = () => {
|
const pickNonLoopbackIPv4 = () => {
|
||||||
const ifaces = os.networkInterfaces();
|
const ifaces = os.networkInterfaces();
|
||||||
|
|||||||
Reference in New Issue
Block a user