diff --git a/packages/cypress/cypress/integration/cucumber/step_definitions/refapp-3.x/11-medications/medications.js b/packages/cypress/cypress/integration/cucumber/step_definitions/refapp-3.x/11-medications/medications.js index 81d83ee..3637a98 100644 --- a/packages/cypress/cypress/integration/cucumber/step_definitions/refapp-3.x/11-medications/medications.js +++ b/packages/cypress/cypress/integration/cucumber/step_definitions/refapp-3.x/11-medications/medications.js @@ -24,9 +24,9 @@ When("the user clicks on Orders tab", () => { cy.contains("Orders").click({ force: true }); }); -Then("the empty Orders page should display", () => { +Then("the empty orders page should display", () => { + cy.contains("Your basket is empty"); cy.contains("There are no active medications to display for this patient"); - cy.contains("There are no past medications to display for this patient"); }); -//TODO: Place drug orders +//TODO: Place drug orders (Still on development) diff --git a/packages/cypress/resources/features/refapp-3.x/11-medications/medications.feature b/packages/cypress/resources/features/refapp-3.x/11-medications/medications.feature index 6f5439f..4868cff 100644 --- a/packages/cypress/resources/features/refapp-3.x/11-medications/medications.feature +++ b/packages/cypress/resources/features/refapp-3.x/11-medications/medications.feature @@ -7,4 +7,4 @@ Feature: Medications @patient-medications Scenario: The user should be able view active and past medications When the user clicks on Orders tab - Then the empty Orders page should display + Then the empty orders page should display