Fix unit tests

This commit is contained in:
Valentin Palkovic 2025-03-12 12:37:53 +01:00
parent 23dd715bd0
commit 353ff45133
2 changed files with 6 additions and 5 deletions

View File

@ -1,7 +1,7 @@
// @vitest-environment happy-dom
/// <reference types="@testing-library/jest-dom" />;
import { render, screen } from '@testing-library/vue';
import { describe, expect, it, vi } from 'vitest';
import { cleanup, render, screen } from '@testing-library/vue';
import { afterEach, describe, expect, it, vi } from 'vitest';
import { addons } from 'storybook/internal/preview-api';
@ -21,6 +21,10 @@ const { CSF3Primary, LoaderStory } = composeStories(stories);
// example with composeStory, returns a single story composed with args/decorators
const Secondary = composeStory(stories.CSF2Secondary, stories.default);
afterEach(() => {
cleanup();
});
describe('renders', () => {
it('renders primary button', () => {
render(CSF3Primary, { props: { label: 'Hello world' } });

View File

@ -10,8 +10,5 @@ export default mergeConfig(
defineConfig({
// @ts-expect-error seems like there's a type mismatch in the vue plugin
plugins: [vue()],
test: {
globals: true,
},
})
);