We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b28d6d commit 632e844Copy full SHA for 632e844
test/dotnet-watch.Tests/HotReload/ApplyDeltaTests.cs
@@ -78,7 +78,7 @@ public async Task HandleTypeLoadFailure()
78
79
await App.AssertWaitingForChanges();
80
81
- var newSrc = /* lang=c#-test */"""
+ var newSrc = """
82
class DepSubType : Dep
83
{
84
int F() => 2;
@@ -128,9 +128,9 @@ public async Task HandleMissingAssemblyFailure()
128
var testAsset = TestAssets.CopyTestAsset("WatchAppMissingAssemblyFailure")
129
.WithSource();
130
131
- await App.StartWatcherAsync(testAsset, "App");
+ App.Start(testAsset, [], "App");
132
133
- await App.WaitForSessionStarted();
+ await App.AssertWaitingForChanges();
134
135
var newSrc = /* lang=c#-test */"""
136
class DepSubType : Dep.DepType
0 commit comments