@sveltestrap/sveltestrap
Version:
Bootstrap components for Svelte
35 lines (31 loc) • 548 B
JavaScript
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
exports[`Container > should render correctly 1`] = `
<body>
<div>
<div
class="container"
/>
<!--<Container>-->
</div>
</body>
`;
exports[`Container > should render custom class 1`] = `
<body>
<div>
<div
class="boogie container"
/>
<!--<Container>-->
</div>
</body>
`;
exports[`Container > should render fluid 1`] = `
<body>
<div>
<div
class="container-fluid"
/>
<!--<Container>-->
</div>
</body>
`;