@sveltestrap/sveltestrap
Version:
Bootstrap components for Svelte
39 lines (35 loc) • 670 B
JavaScript
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
exports[`BreadcrumbItem > should render active 1`] = `
<body>
<div>
<li
aria-current="page"
class="active breadcrumb-item"
/>
<!--<BreadcrumbItem>-->
</div>
</body>
`;
exports[`BreadcrumbItem > should render correctly 1`] = `
<body>
<div>
<li
class="breadcrumb-item"
>
Alpha
</li>
<!--<BreadcrumbItem>-->
</div>
</body>
`;
exports[`BreadcrumbItem > should render custom class 1`] = `
<body>
<div>
<li
class="boogie breadcrumb-item"
listclassname="shoes"
/>
<!--<BreadcrumbItem>-->
</div>
</body>
`;