Remove unnecessary change

This commit is contained in:
Reinier Criel 2025-12-08 17:30:55 -08:00 committed by Sander Declerck
parent c3244342e7
commit 7f1cbab717
No known key found for this signature in database

View file

@ -120,9 +120,7 @@ function stopServer(server) {
} catch {
resolve();
}
setTimeout(() => {
resolve();
}, SERVER_STOP_TIMEOUT_MS);
setTimeout(() => resolve(), SERVER_STOP_TIMEOUT_MS);
});
}