test(inline-notification): add unit tests

This commit is contained in:
Eric Liu 2025-03-20 12:20:46 -07:00
commit 35de0fe0d6
5 changed files with 211 additions and 49 deletions

View file

@ -0,0 +1,14 @@
<script lang="ts">
import {
InlineNotification,
NotificationActionButton,
} from "carbon-components-svelte";
</script>
<InlineNotification kind="warning">
<strong slot="title">Custom Title:</strong>
<strong slot="subtitle">Custom subtitle content.</strong>
<svelte:fragment slot="actions">
<NotificationActionButton>Learn more</NotificationActionButton>
</svelte:fragment>
</InlineNotification>