Slide 50
Slide 50 text
import React from 'react';
import { render, screen } from '@testing-library/react';
import { BreadcrumbList, BreadcrumbItem } from './Breadcrumb;
describe('', () => {
test('having aria attributes', async () => {
render(
Amebaとは
);
expect(screen.getByRole('navigation').getAttribute('aria-label')).toEqual(
'パンくずリスト',
);
});
});
できるだけ
自動的に
テストします