Skip to content
Snippets Groups Projects
Unverified Commit 8cf2c06a authored by Nemanja Glumac's avatar Nemanja Glumac Committed by GitHub
Browse files

#18317 Repro: Audit > Questions > Total runtime displays link instead of an actual time (#18514)

parent c28672c6
No related branches found
No related tags found
No related merge requests found
......@@ -70,6 +70,20 @@ describeWithToken("audit > auditing > questions", () => {
cy.get("tbody > tr").should("have.length", 1);
cy.findByText("My question");
});
it.skip("should display total runtime correctly (metabase#18317)", () => {
const runtimeIndex = 4;
cy.visit("/admin/audit/questions/all");
cy.get("th")
.eq(runtimeIndex)
.should("contain", "Total Runtime (ms)");
cy.get("td")
.eq(runtimeIndex)
.should("not.contain", "Link");
});
});
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment