mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
test(tabs): add more unit tests (#2201)
This commit is contained in:
parent
bb04824902
commit
9584029a25
3 changed files with 195 additions and 0 deletions
8
tests/Tabs/TabsSkeleton.test.svelte
Normal file
8
tests/Tabs/TabsSkeleton.test.svelte
Normal file
|
@ -0,0 +1,8 @@
|
|||
<script lang="ts">
|
||||
import { TabsSkeleton } from "carbon-components-svelte";
|
||||
|
||||
export let count = 4;
|
||||
export let type: "default" | "container" = "default";
|
||||
</script>
|
||||
|
||||
<TabsSkeleton {count} {type} />
|
Loading…
Add table
Add a link
Reference in a new issue