remove console.log

This commit is contained in:
Simon Knott 2024-11-08 15:22:30 +01:00
parent 5b576ab304
commit b311f0cd3d
No known key found for this signature in database
GPG key ID: 8CEDC00028084AEC

View file

@ -130,7 +130,6 @@ export class WebServerPlugin implements TestRunnerPlugin {
? 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, falling back to SIGKILL`)), timeout)
: undefined; : undefined;
launchedProcess.once('close', (...args) => { launchedProcess.once('close', (...args) => {
console.log("closing", ...args)
clearTimeout(timer); clearTimeout(timer);
resolve(); resolve();
}); });