Don't close runtests-browser server when browser-launcher closes (#23875)

This commit is contained in:
Andy
2018-05-03 13:55:40 -07:00
committed by GitHub
parent 9daa3b3b1c
commit 8c07c5b837

View File

@@ -780,7 +780,6 @@ function startClient(server: http.Server) {
const child = child_process.spawn(browserPath, [`http://localhost:${port}/tests/webTestResults.html${queryString}`], {
stdio: "inherit"
});
child.on("exit", () => server.close());
}
function printHelp() {