remove console.log
This commit is contained in:
parent
5b576ab304
commit
b311f0cd3d
|
|
@ -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();
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue