mirror of
https://github.com/System-End/My-website.git
synced 2026-04-20 00:25:21 +00:00
9 lines
No EOL
315 B
JavaScript
9 lines
No EOL
315 B
JavaScript
import React from 'react';
|
|
import { render, screen } from '@testing-library/react';
|
|
import GithubRepos from './GithubRepos';
|
|
|
|
test('renders GithubRepos component', () => {
|
|
render(<GithubRepos />);
|
|
const linkElement = screen.getByText(/Github Repositories/i);
|
|
expect(linkElement).toBeInTheDocument();
|
|
}); |