test(structured-list): add unit tests

This commit is contained in:
Eric Liu 2025-03-20 16:02:16 -07:00
commit f5342d4b96
4 changed files with 236 additions and 100 deletions

View file

@ -0,0 +1,26 @@
<script lang="ts">
import {
StructuredList,
StructuredListBody,
StructuredListHead,
StructuredListCell,
StructuredListRow,
} from "carbon-components-svelte";
</script>
<StructuredList>
<StructuredListHead>
<StructuredListRow head>
<StructuredListCell head>
<div data-testid="custom-header">Custom Header</div>
</StructuredListCell>
</StructuredListRow>
</StructuredListHead>
<StructuredListBody>
<StructuredListRow>
<StructuredListCell>
<div data-testid="custom-content">Custom Content</div>
</StructuredListCell>
</StructuredListRow>
</StructuredListBody>
</StructuredList>