mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-16 19:01:05 +00:00
test(breadcrumb): add unit tests
This commit is contained in:
parent
4fb6a0be9f
commit
7153d43dc0
6 changed files with 153 additions and 35 deletions
19
tests/Breadcrumb/Breadcrumb.dynamic.test.svelte
Normal file
19
tests/Breadcrumb/Breadcrumb.dynamic.test.svelte
Normal file
|
@ -0,0 +1,19 @@
|
|||
<script lang="ts">
|
||||
import { Breadcrumb, BreadcrumbItem } from "carbon-components-svelte";
|
||||
|
||||
type BreadcrumbItemType = { href?: string; text: string };
|
||||
|
||||
export let items: BreadcrumbItemType[] = [
|
||||
{ href: "/", text: "Dashboard" },
|
||||
{ href: "/reports", text: "Annual reports" },
|
||||
{ href: "/reports/2019", text: "2019" },
|
||||
];
|
||||
</script>
|
||||
|
||||
<Breadcrumb>
|
||||
{#each items as item, i}
|
||||
<BreadcrumbItem href={item.href} isCurrentPage={i === items.length - 1}>
|
||||
{item.text}
|
||||
</BreadcrumbItem>
|
||||
{/each}
|
||||
</Breadcrumb>
|
Loading…
Add table
Add a link
Reference in a new issue