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