Skip to content

Commit

Permalink
fix: relax the external timeout a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
ihexxa committed May 28, 2024
1 parent ba267be commit 5ac9a1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/insomnia/src/network/network.ts
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ export const tryToExecuteScript = async (context: RequestAndContextAndOptionalRe
reject(new Error('Timeout: Hidden browser window is not responding'));
// Add one extra second to ensure the hidden browser window has had a chance to return its timeout
// TODO: restart the hidden browser window
}, timeout + 1000);
}, timeout + 2000);
});
// const isBaseEnvironmentSelected = environment._id === baseEnvironment._id;
// if (isBaseEnvironmentSelected) {
Expand Down

0 comments on commit 5ac9a1a

Please sign in to comment.