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

e2e test for "About Metabase" modal (partial repro for #15656) (#17308)


* Add parial repro for #15656

* Update frontend/test/metabase/scenarios/onboarding/about.cy.spec.js

Co-authored-by: default avatarflamber <1447303+flamber@users.noreply.github.com>
parent cf96df32
No related branches found
No related tags found
No related merge requests found
import { restore } from "__support__/e2e/cypress";
describe("scenarios > about Metabase", () => {
beforeEach(() => {
restore();
cy.signInAsAdmin();
cy.visit("/");
cy.icon("gear").click();
cy.findByText("About Metabase").click();
});
it.skip("should display correct Metabase version (metabase#15656)", () => {
cy.findByText(/You're on version v[01](\.\d+){2,3}(-[\w\d]+)?/i);
cy.findByText(/Built on \d{4}-\d{2}-\d{2}/);
cy.findByText("Branch: ?").should("not.exist");
cy.findByText("Hash: ?").should("not.exist");
});
});
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