@sveltestrap/sveltestrap
Version:
Bootstrap components for Svelte
87 lines (74 loc) • 1.5 kB
JavaScript
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
exports[`ListGroupItem > should render a if href 1`] = `
<body>
<div>
<a
active="false"
class="list-group-item"
disabled="false"
href="http://www.example.com"
/>
<!--<ListGroupItem>-->
</div>
</body>
`;
exports[`ListGroupItem > should render action 1`] = `
<body>
<div>
<li
active="false"
class="list-group-item list-group-item-action"
disabled="false"
/>
<!--<ListGroupItem>-->
</div>
</body>
`;
exports[`ListGroupItem > should render action if button 1`] = `
<body>
<div>
<button
active="false"
class="list-group-item list-group-item-action"
type="button"
/>
<!--<ListGroupItem>-->
</div>
</body>
`;
exports[`ListGroupItem > should render color 1`] = `
<body>
<div>
<li
active="false"
class="list-group-item list-group-item-primary"
disabled="false"
/>
<!--<ListGroupItem>-->
</div>
</body>
`;
exports[`ListGroupItem > should render correctly 1`] = `
<body>
<div>
<li
active="false"
class="list-group-item"
disabled="false"
/>
<!--<ListGroupItem>-->
</div>
</body>
`;
exports[`ListGroupItem > should render custom class 1`] = `
<body>
<div>
<li
active="false"
class="boogie list-group-item"
disabled="false"
/>
<!--<ListGroupItem>-->
</div>
</body>
`;