Skip to content

Commit

Permalink
test case
Browse files Browse the repository at this point in the history
  • Loading branch information
Mahendar0701 committed Nov 25, 2024
1 parent 0c18c32 commit 1ab994c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cypress/pageobject/Sample/SampleTestCreate.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export class SampleTestPage {
visitSampleRequestPage(): void {
cy.get("a").contains("Sample Tests").click();
cy.get("a").contains("Service Request").click();
cy.verifyAndClickElement("#sample-request-btn", "Request Sample Test");
cy.url().should("include", "/sample-test");
}
Expand Down
1 change: 1 addition & 0 deletions src/components/Patient/PatientDetailsTab/Demography.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,7 @@ export const Demography = (props: PatientProps) => {
id: "volunteer-contact",
details: [
<EmergencyContact
key="volunteer-contact"
number={patientData.assigned_to_object?.alt_phone_number}
name={
patientData.assigned_to_object
Expand Down
2 changes: 1 addition & 1 deletion src/components/Patient/PatientHome.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ export const PatientHome = (props: {
</div>
<div className="mt-2 h-full space-y-2">
<div className="space-y-3 border-b border-dashed text-left text-lg font-semibold text-secondary-900">
{page == "service-request" && NonReadOnlyUsers && (
{page == "service-request" && (
<div>
<ButtonV2
className="w-full bg-white font-semibold text-green-800 hover:bg-secondary-200"
Expand Down

0 comments on commit 1ab994c

Please sign in to comment.