kopia lustrzana https://gitlab.com/soapbox-pub/soapbox
22 wiersze
523 B
TypeScript
22 wiersze
523 B
TypeScript
import { describe, expect, it } from 'vitest';
|
|
|
|
import { render, screen } from 'soapbox/jest/test-helpers.tsx';
|
|
|
|
import Avatar from './avatar.tsx';
|
|
|
|
const src = '/static/alice.jpg';
|
|
|
|
describe('<Avatar />', () => {
|
|
it('renders', () => {
|
|
render(<Avatar src={src} />);
|
|
|
|
expect(screen.getByRole('img')).toBeInTheDocument();
|
|
});
|
|
|
|
it('handles size props', () => {
|
|
render(<Avatar src={src} size={50} />);
|
|
|
|
expect(screen.getByTestId('still-image-container').getAttribute('style')).toMatch(/50px/i);
|
|
});
|
|
});
|