it("does not show an error message if the metric has no issues and an issue tracker is configured", () => {
    renderIssuesRow({ report: { issue_tracker: { type: "Jira" } } })
    expect(screen.queryAllByText(/No issue tracker configured/).length).toBe(0)
})