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 9f54405 commit 0f8127fCopy full SHA for 0f8127f
tests/LumexUI.Tests/Components/Tabs/TabsTests.razor
@@ -140,22 +140,5 @@
140
tab.TextContent.Should().Be("Item 1");
141
}
142
143
- [Fact]
144
- public void ShouldThrowWhenTabIdIsNotProvided()
145
- {
146
- var action = () => Render(
147
- @<LumexTabs>
148
- @foreach(var tab in _tabs)
149
150
- <LumexTab Title="@tab.Title">
151
- @tab.Content
152
- </LumexTab>
153
- }
154
- </LumexTabs>
155
- );
156
-
157
- action.Should().Throw<InvalidOperationException>();
158
159
160
private record TestModel(string Id, string Title, string Content);
161
0 commit comments