w3bdesign/dfweb-v4

View on GitHub
__tests__/Layout/Footer.test.tsx

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * @jest-environment jsdom
 */

import { render, screen } from "@testing-library/react";

import Footer from "../../src/components/Layout/Footer.component";

describe("Footer", () => {
  it("Footer laster inn og kan vises", () => {
    render(<Footer />);
    const footer = screen.getByText(/copyright daniel/i);
    expect(footer).toBeInTheDocument();
  });
});