drop error message

This commit is contained in:
Simon Knott 2024-12-30 09:08:54 +01:00
parent caa941a575
commit cc5df753ee
No known key found for this signature in database
GPG key ID: 8CEDC00028084AEC

View file

@ -130,7 +130,7 @@ export class WebServerPlugin implements TestRunnerPlugin {
return new Promise<void>((resolve, reject) => {
const timer = timeout !== 0
? setTimeout(() => reject(new Error(`process didn't close gracefully within timeout, falling back to SIGKILL`)), timeout)
? setTimeout(() => reject(new Error(`process didn't close gracefully within timeout`)), timeout)
: undefined;
launchedProcess.once('close', (...args) => {
clearTimeout(timer);