diff --git a/test/E2ETests/SmokeTests.cs b/test/E2ETests/SmokeTests.cs index b9065eee6d..bab7a62869 100644 --- a/test/E2ETests/SmokeTests.cs +++ b/test/E2ETests/SmokeTests.cs @@ -27,6 +27,7 @@ namespace E2ETests //Request to base address and check if various parts of the body are rendered var response = httpClient.GetAsync(string.Empty).Result; var responseContent = response.Content.ReadAsStringAsync().Result; + Console.WriteLine("Response from the server: {0}", responseContent); Assert.Equal(HttpStatusCode.OK, response.StatusCode); Assert.Contains("ASP.NET MVC Music Store", responseContent, StringComparison.OrdinalIgnoreCase); Assert.Contains("Register", responseContent, StringComparison.OrdinalIgnoreCase);