it("renders a checkmark if the status is target met", () => {
    const { getAllByLabelText } = render(<StatusIcon status="target_met" />)
    expect(getAllByLabelText(/Target met/).length).toBe(1)
})