Skip to content

Commit

Permalink
fixed the patient count
Browse files Browse the repository at this point in the history
  • Loading branch information
nihal467 committed Oct 11, 2024
1 parent fea3405 commit 5777eed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cypress/e2e/patient_spec/PatientHomepage.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ describe("Patient Homepage present functionalities", () => {
patientHome.verifyTotalPatientCount("0");
// Clear the badges and verify the patient count along with badges
cy.clearAllFilters();
patientHome.verifyTotalPatientCount("18");
patientHome.verifyTotalPatientCount("1");
// Apply Any and confirmed diagonsis to verify patient count 17
patientHome.clickPatientAdvanceFilters();
patientHome.selectAnyIcdDiagnosis(patientIcdDiagnosis, patientIcdDiagnosis);
Expand All @@ -76,7 +76,7 @@ describe("Patient Homepage present functionalities", () => {
patientIcdDiagnosis,
);
patientHome.clickPatientFilterApply();
patientHome.verifyTotalPatientCount("17");
patientHome.verifyTotalPatientCount("1");
});

it("Patient Details based advance filters applied in the patient tab", () => {
Expand Down Expand Up @@ -106,7 +106,7 @@ describe("Patient Homepage present functionalities", () => {
patientHome.verifyMedicoBadgeContent("false");
// Clear the badges and verify the patient count along with badges
cy.clearAllFilters();
patientHome.verifyTotalPatientCount("18");
patientHome.verifyTotalPatientCount("1");
});

it("Export the live patient list based on a date range", () => {
Expand Down

0 comments on commit 5777eed

Please sign in to comment.