Body content
diff --git a/tests/Core/Dialog/FluentDialogTests.razor b/tests/Core/Dialog/FluentDialogTests.razor
index 0090ab9593..5c97975d3b 100644
--- a/tests/Core/Dialog/FluentDialogTests.razor
+++ b/tests/Core/Dialog/FluentDialogTests.razor
@@ -1,7 +1,15 @@
-@using Xunit;
+@using Xunit;
@inherits TestContext
@code
{
+ [Inject]
+ private LibraryConfiguration LibraryConfiguration { get; set; } = new LibraryConfiguration();
+
+ public FluentDialogTests()
+ {
+ Services.AddSingleton(LibraryConfiguration);
+ }
+
[Fact]
public void FluentDialog_Default()
{
@@ -65,4 +73,4 @@
var result = cut.Markup;
});
}
-}
\ No newline at end of file
+}