Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tmat committed Jan 21, 2025
1 parent 030695e commit 8a8df71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/dotnet-watch.Tests/HotReload/ApplyDeltaTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ public async Task BlazorWasm(bool projectSpecifiesCapabilities)
App.AssertOutputContains(MessageDescriptor.ConfiguredToLaunchBrowser);

// Browser is launched based on blazor-devserver output "Now listening on: ...".
await App.WaitUntilOutputContains($"dotnet watch ⌚ Launching browser: http://localhost:{port}/");
await App.WaitUntilOutputContains($"dotnet watch ⌚ Launching browser: http://localhost:{port}");

// Middleware should have been loaded to blazor-devserver before the browser is launched:
App.AssertOutputContains("dbug: Microsoft.AspNetCore.Watch.BrowserRefresh.BlazorWasmHotReloadMiddleware[0]");
Expand Down Expand Up @@ -395,7 +395,7 @@ public async Task Razor_Component_ScopedCssAndStaticAssets()

App.AssertOutputContains(MessageDescriptor.ConfiguredToUseBrowserRefresh);
App.AssertOutputContains(MessageDescriptor.ConfiguredToLaunchBrowser);
App.AssertOutputContains($"dotnet watch ⌚ Launching browser: http://localhost:{port}/");
App.AssertOutputContains($"dotnet watch ⌚ Launching browser: http://localhost:{port}");
App.Process.ClearOutput();

var scopedCssPath = Path.Combine(testAsset.Path, "RazorClassLibrary", "Components", "Example.razor.css");
Expand Down

0 comments on commit 8a8df71

Please sign in to comment.