e2e: decrease stop app waitTime (#3847)

This commit is contained in:
Karsten Hassel
2025-07-16 23:54:02 +02:00
committed by GitHub
parent 54752f10e8
commit e7b669af34
2 changed files with 2 additions and 1 deletions

View File

@@ -34,7 +34,7 @@ exports.startApplication = async (configFilename, exec) => {
return global.app.start();
};
exports.stopApplication = async (waitTime = 1000) => {
exports.stopApplication = async (waitTime = 10) => {
if (global.window) {
// no closing causes jest errors and memory leaks
global.window.close();