ICTU/quality-time

View on GitHub
components/frontend/src/fields/Comment.test.js

Summary

Maintainability
A
55 mins
Test Coverage
import { render, screen } from "@testing-library/react"

import { Comment } from "./Comment"

it("has the comment label", () => {
    render(<Comment />)
    expect(screen.getAllByText(/Comment/).length).toBe(1)
})