Add tabs example

This commit is contained in:
Steve Kinney
2024-10-01 18:01:10 -05:00
parent 75e9bb7ca7
commit ad6dc3b145
8 changed files with 407 additions and 103 deletions

View File

@@ -1,8 +1,11 @@
import { defineConfig } from 'vitest/config';
import { svelte } from '@sveltejs/vite-plugin-svelte';
export default defineConfig({
plugins: [svelte()],
test: {
environment: 'happy-dom',
globals: true,
setupFiles: ['@testing-library/jest-dom/vitest'],
},
});