You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Assert.True(result.TestOutput.Any(m =>m.Contains("firstJsonLoad=true")),"The first lazy load should report that it loaded the assembly");
71
+
Assert.True(result.TestOutput.Any(m =>m.Contains("secondJsonLoad=false")),"The second lazy load of the same assembly should be an idempotent no-op");
72
+
Assert.True(result.TestOutput.Any(m =>m.Contains("FirstName")),"The lazy loading test didn't emit expected message with JSON");
73
+
Assert.False(result.ConsoleOutput.Any(m =>m.Contains("must be marked with 'BlazorWebAssemblyLazyLoad'")),"Reloading an already-loaded lazy assembly must not throw the 'must be marked' error");
0 commit comments