File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
test/dotnet-watch.Tests/Watch Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -25,8 +25,11 @@ public async Task LaunchesBrowserOnStart()
25
25
// check that all app output is printed out:
26
26
await App . AssertOutputLine ( line => line . Contains ( "Content root path:" ) ) ;
27
27
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
+
28
31
// 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/" ) ) ;
30
33
}
31
34
32
35
[ Fact ]
You can’t perform that action at this time.
0 commit comments