Skip to content

Commit

Permalink
Modified the cypress viewport (#10851)
Browse files Browse the repository at this point in the history
  • Loading branch information
nihal467 authored Feb 27, 2025
1 parent 0dba28a commit b6b9181
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions cypress/e2e/patient_spec/patient_creation.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ describe("Patient Management", () => {
];

beforeEach(() => {
cy.viewport(1920, 1080);
cy.loginByApi("doctor");
cy.visit("/");
});
Expand Down
1 change: 1 addition & 0 deletions cypress/e2e/patient_spec/patient_details.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ const patientDetails = new PatientDetails();

describe("Patient Management", () => {
beforeEach(() => {
cy.viewport(1920, 1080);
cy.loginByApi("devdoctor");
cy.visit("/");
});
Expand Down
1 change: 1 addition & 0 deletions cypress/e2e/patient_spec/patient_encounter.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ const patientEncounter = new PatientEncounter();

describe("Patient Encounter Questionnaire", () => {
beforeEach(() => {
cy.viewport(1920, 1080);
cy.loginByApi("devnurse");
cy.visit("/");
});
Expand Down

0 comments on commit b6b9181

Please sign in to comment.