diff --git a/script/e2e.mts b/script/e2e.mts index 8b9f1a5b..c09d47bb 100644 --- a/script/e2e.mts +++ b/script/e2e.mts @@ -62,7 +62,11 @@ try { console.log('Sending quit command'); - await client.post('api/action/quit').text(); + try { + await client.post('api/action/quit').text(); + } catch (err) { + console.warn('Quit command failed', err); + } } finally { // ps.cancel(); }