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 af170c9 commit 668a115Copy full SHA for 668a115
test/UnitTest/Components/TableTest.cs
@@ -3265,14 +3265,29 @@ public void ShowFilterHeader_Ok(bool showCheckboxText)
3265
});
3266
3267
3268
- cut.Contains("width: 36px;");
+ if (showCheckboxText == false)
3269
+ {
3270
+ cut.Contains("width: 36px;");
3271
+ }
3272
+ else
3273
3274
+ cut.Contains("width: 80px;");
3275
3276
3277
var table = cut.FindComponent<Table<Foo>>();
3278
table.SetParametersAndRender(pb =>
3279
{
3280
pb.Add(a => a.TableSize, TableSize.Compact);
3281
- cut.Contains("width: 28px;");
3282
+
3283
3284
3285
+ cut.Contains("width: 28px;");
3286
3287
3288
3289
3290
3291
}
3292
3293
[Theory]
0 commit comments