it("renders an info icon if the status is informative", () => {
    const { getAllByLabelText } = render(<StatusIcon status="informative" />)
    expect(getAllByLabelText(/Informative/).length).toBe(1)
})