OpenC3/cosmos

View on GitHub
openc3/templates/tool_react/src/root.component.test.js

Summary

Maintainability
A
0 mins
Test Coverage
import { render } from "@testing-library/react";
import Root from "./root.component";

describe("Root component", () => {
  it("should be in the document", () => {
    const { getByText } = render(<Root name="Testapp" />);
    expect(getByText(/Testapp is mounted!/i)).toBeInTheDocument();
  });
});