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 8178e81 commit 2dbddb9Copy full SHA for 2dbddb9
1 file changed
test/UnitTest/Options/BootstrapBlazorOptionsTest.cs
@@ -118,4 +118,15 @@ public void CacheManagerOptions_Ok()
118
Assert.Equal(TimeSpan.FromSeconds(1), options.CacheManagerOptions.SlidingExpiration);
119
Assert.True(options.CacheManagerOptions.Enable);
120
}
121
+
122
+ [Fact]
123
+ public void ModalSettings_Ok()
124
+ {
125
+ var options = new BootstrapBlazorOptions();
126
+ Assert.NotNull(options.ModalSettings);
127
128
+ options.ModalSettings.IsFade = true;
129
130
+ Assert.True(options.ModalSettings.IsFade);
131
+ }
132
0 commit comments