Skip to content

Commit ca04700

Browse files
committed
Feedback
1 parent bc1f420 commit ca04700

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/dotnet-watch.Tests/Watch/BrowserLaunchTests.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,11 @@ public async Task LaunchesBrowserOnStart()
2525
// check that all app output is printed out:
2626
await App.AssertOutputLine(line => line.Contains("Content root path:"));
2727

28+
Assert.Contains(App.Process.Output, line => line.Contains("Application started. Press Ctrl+C to shut down."));
29+
Assert.Contains(App.Process.Output, line => line.Contains("Hosting environment: Development"));
30+
2831
// Verify we launched the browser.
29-
Assert.Contains(App.Process.Output, line => line.Contains("Launching browser: https://localhost:5001/"));
32+
Assert.Contains(App.Process.Output, line => line.Contains("dotnet watch ⌚ Launching browser: https://localhost:5001/"));
3033
}
3134

3235
[Fact]

0 commit comments

Comments
 (0)