1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
import { render, screen } from '@testing-library/react';
import { describe, expect, test } from 'vitest';
import {
Card,
CardAction,
CardContent,
CardDescription,
CardFooter,
CardHeader,
CardTitle,
} from './card';
describe('Card', () => {
test('renders all card slots', () => {
render(
<Card>
<CardHeader>
<CardTitle>Card Title</CardTitle>
<CardDescription>Card Description</CardDescription>
<CardAction>Action</CardAction>
</CardHeader>
<CardContent>Content</CardContent>
<CardFooter>Footer</CardFooter>
</Card>,
);
expect(screen.getByText('Card Title')).toHaveAttribute(
'data-slot',
'card-title',
);
expect(screen.getByText('Card Description')).toHaveAttribute(
'data-slot',
'card-description',
);
expect(screen.getByText('Action')).toHaveAttribute('data-slot', 'card-action');
expect(screen.getByText('Content')).toHaveAttribute('data-slot', 'card-content');
expect(screen.getByText('Footer')).toHaveAttribute('data-slot', 'card-footer');
});
});
|