blob: 3567d7eecbb8b3cad675624ed489fad6042d189d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import React from 'react';
import { render } from '@testing-library/react';
import HeaderBar from "../../components/HeaderBar";
test('renders header bar with title', () => {
const { getByText } = render(<HeaderBar />);
const formListing = getByText(/Python Discord Forms/i);
expect(formListing).toBeInTheDocument();
});
|