it("does not render the time left if the status does not demand action", () => {
    render(<TimeLeft metric={{ status: "target_met" }} report={{}} />)
    expect(screen.queryAllByText(/day/).length).toBe(0)
})