diff --git a/cypress/e2e/room_board/shareMultiColumnRoomBoardInSameSchool.feature b/cypress/e2e/room_board/shareMultiColumnRoomBoardInSameSchool.feature index 4fb58b42..20e7a8f6 100644 --- a/cypress/e2e/room_board/shareMultiColumnRoomBoardInSameSchool.feature +++ b/cypress/e2e/room_board/shareMultiColumnRoomBoardInSameSchool.feature @@ -31,7 +31,7 @@ Feature: Rooms - Share multi-column room board in the Rooms with teacher from th Then I see the option Copy link Then I see the option Scan QR Code Then I copy the board URL - Then I see the alert success message + Then I see the alert message # pre-condition: the second teacher is logged into the application, and a room exists Given I am logged in as a '' at '' diff --git a/cypress/e2e/room_board/shareMultiColumnRoomBoardWithDifferentSchoolOnMainDev.feature b/cypress/e2e/room_board/shareMultiColumnRoomBoardWithDifferentSchoolOnMainDev.feature index c4b6fd1e..b951cd5d 100644 --- a/cypress/e2e/room_board/shareMultiColumnRoomBoardWithDifferentSchoolOnMainDev.feature +++ b/cypress/e2e/room_board/shareMultiColumnRoomBoardWithDifferentSchoolOnMainDev.feature @@ -34,7 +34,7 @@ Feature: Rooms - Share multi-column board in the rooms with the teacher from dif Then I see the option Copy link Then I see the option Scan QR Code Then I copy the board URL - Then I see the alert success message + Then I see the alert message # pre-condition: second teacher logged into the application, and a room exists Given I am logged in as a '' at '' diff --git a/cypress/e2e/room_board/shareMultiColumnRoomBoardWithDifferentSchoolOnStaging.feature b/cypress/e2e/room_board/shareMultiColumnRoomBoardWithDifferentSchoolOnStaging.feature index a7d29d5b..16838480 100644 --- a/cypress/e2e/room_board/shareMultiColumnRoomBoardWithDifferentSchoolOnStaging.feature +++ b/cypress/e2e/room_board/shareMultiColumnRoomBoardWithDifferentSchoolOnStaging.feature @@ -32,7 +32,7 @@ Feature: Rooms - Share multi-column board in the rooms with the teacher from dif Then I see the option Copy link Then I see the option Scan QR Code Then I copy the board URL - Then I see the alert success message + Then I see the alert message # pre-condition: second teacher logged into the application, and a room exists Given I am logged in as a '' at '' diff --git a/cypress/support/step_definition/room_boards/roomBoardSteps.spec.js b/cypress/support/step_definition/room_boards/roomBoardSteps.spec.js index 01bdf1f0..658e2a02 100644 --- a/cypress/support/step_definition/room_boards/roomBoardSteps.spec.js +++ b/cypress/support/step_definition/room_boards/roomBoardSteps.spec.js @@ -3,7 +3,7 @@ import RoomBoards from "../../pages/room_board/pageRoomBoards"; const roomBoards = new RoomBoards(); -Then("I see the alert success message", () => { +Then("I see the alert message", () => { roomBoards.verifyShareImportBoardAlert(); });