it("displays the update date in the label if configured", async () => {
    history.push("?show_issue_update_date=true")
    const { queryByText } = renderIssueStatus({ updated: true })
    expect(queryByText(/2 days ago/)).not.toBe(null)
})