Merge branch 'release/2.2'

This commit is contained in:
John Luo 2018-10-30 12:50:46 -07:00
commit d05ef9be3a
1 changed files with 4 additions and 0 deletions

View File

@ -49,6 +49,7 @@ namespace Interop.FunctionalTests
ShutdownLogPath = Path.Combine(ResolvedLogOutputDirectory, $"{ResolvedTestMethodName}.sd.json");
ChromeArgs = $"--headless " +
$"--no-sandbox " +
$"--disable-gpu " +
$"--allow-insecure-localhost " +
$"--enable-logging " +
@ -109,6 +110,9 @@ namespace Interop.FunctionalTests
var headlessChromeProcess = Process.Start(chromeStartInfo);
var chromeOutput = await headlessChromeProcess.StandardOutput.ReadToEndAsync();
var chromeError = await headlessChromeProcess.StandardError.ReadToEndAsync();
Logger.LogInformation($"Standard output: {chromeOutput}");
Logger.LogInformation($"Standard error: {chromeError}");
headlessChromeProcess.WaitForExit();