Skip to content

Commit 0f8127f

Browse files
committed
test(tabs): update tests
1 parent 9f54405 commit 0f8127f

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

tests/LumexUI.Tests/Components/Tabs/TabsTests.razor

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -140,22 +140,5 @@
140140
tab.TextContent.Should().Be("Item 1");
141141
}
142142

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-
160143
private record TestModel(string Id, string Title, string Content);
161144
}

0 commit comments

Comments
 (0)