UNPKG

@sveltestrap/sveltestrap

Version:

Bootstrap components for Svelte

87 lines (74 loc) 1.5 kB
// 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" /> <!--&lt;ListGroupItem&gt;--> </div> </body> `; exports[`ListGroupItem > should render action 1`] = ` <body> <div> <li active="false" class="list-group-item list-group-item-action" disabled="false" /> <!--&lt;ListGroupItem&gt;--> </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" /> <!--&lt;ListGroupItem&gt;--> </div> </body> `; exports[`ListGroupItem > should render color 1`] = ` <body> <div> <li active="false" class="list-group-item list-group-item-primary" disabled="false" /> <!--&lt;ListGroupItem&gt;--> </div> </body> `; exports[`ListGroupItem > should render correctly 1`] = ` <body> <div> <li active="false" class="list-group-item" disabled="false" /> <!--&lt;ListGroupItem&gt;--> </div> </body> `; exports[`ListGroupItem > should render custom class 1`] = ` <body> <div> <li active="false" class="boogie list-group-item" disabled="false" /> <!--&lt;ListGroupItem&gt;--> </div> </body> `;