25 lines
837 B
JavaScript
25 lines
837 B
JavaScript
/// <reference types="Cypress" />
|
|
const {FIREBASE_USERNAME, FIREBASE_PASSWORcD} = Cypress.env();
|
|
describe("Renders the General Page", () => {
|
|
beforeEach(() => {
|
|
cy.visit("/");
|
|
});
|
|
it("Renders Correctly", () => {
|
|
});
|
|
it("Has the Slogan", () => {
|
|
cy.findByText("A whole x22new kind of shop management system.").should(
|
|
"exist"
|
|
);
|
|
/* ==== Generated with Cypress Studio ==== */
|
|
cy.get(
|
|
".ant-menu-item-active > .ant-menu-title-content > .header0-item-block"
|
|
).click();
|
|
cy.get("#email").clear();
|
|
cy.get("#email").type("patrick@imex.dev");
|
|
cy.get("#password").clear();
|
|
cy.get("#password").type("patrick123{enter}");
|
|
cy.get(".ant-form > .ant-btn").click();
|
|
/* ==== End Cypress Studio ==== */
|
|
});
|
|
});
|