├── .gitignore ├── .vscode └── settings.json ├── README.md ├── cypress.config.js ├── cypress ├── e2e │ └── Backend │ │ ├── API │ │ ├── 1-AdminFlow │ │ │ ├── 1.01-Admin[Auth] │ │ │ │ ├── 1.1.1-Admin_Login │ │ │ │ │ └── adminLogin.cy.js │ │ │ │ └── 1.1.2-Edit_Profile │ │ │ │ │ └── editProfile.cy.js │ │ │ ├── 1.02-Admin[Staff] │ │ │ │ ├── 1.2.1-Get_All_Staff │ │ │ │ │ └── allStaff.cy.js │ │ │ │ ├── 1.2.2-Create_Staff │ │ │ │ │ └── createStaff.cy.js │ │ │ │ ├── 1.2.3-Update_Staff │ │ │ │ │ └── updateStaff.cy.js │ │ │ │ ├── 1.2.4-Delete_Staff │ │ │ │ │ └── deleteStaff.cy.js │ │ │ │ ├── 1.2.5-Get_all_staff │ │ │ │ │ └── getStaffRole.cy.js │ │ │ │ ├── 1.2.6-Create_Staff_Roll │ │ │ │ │ └── createStaffRoll.cy.js │ │ │ │ ├── 1.2.7-Update_Staff_Roll │ │ │ │ │ └── updateStaffRoll.cy.js │ │ │ │ └── 1.2.8-Delete_Role │ │ │ │ │ └── deleteRole.cy.js │ │ │ └── 1.03-Admin_Dashboard_Management │ │ │ │ ├── 3.1-DashboardInfo │ │ │ │ └── dashboardInfo.cy.js │ │ │ │ └── 3.2-UserStatistic │ │ │ │ └── userStatistic.cy.js │ │ ├── 2-Packages │ │ │ ├── 2.1-Get_Package │ │ │ │ └── getPackage.cy.js │ │ │ ├── 2.2-Package_Create │ │ │ │ └── packageCreate.cy.js │ │ │ ├── 2.3-Package_Update │ │ │ │ └── packageUpdate.cy.js │ │ │ ├── 2.4-Delete_Package │ │ │ │ └── deletePackage.cy.js │ │ │ ├── 2.5-Get_All_Package │ │ │ │ └── getAllPackage.cy.js │ │ │ ├── 2.6-Create_default_Package │ │ │ │ └── createDeafultPackage.cy.js │ │ │ └── 2.7-Update_Deafult_Package │ │ │ │ └── updateDefaultPackage.cy.js │ │ ├── 3-PublicAPI │ │ │ ├── UniversityName │ │ │ │ └── universityName.cy.js │ │ │ └── UploadFile │ │ │ │ └── uploadFile.cy.js │ │ └── 4-UserFlow │ │ │ ├── 0.1-Register │ │ │ └── newRegister.cy.js │ │ │ ├── 0.2-SendOTP │ │ │ └── sendOTP.cy.js │ │ │ ├── 0.3-VerifyOTP │ │ │ └── verifyOTP.cy.js │ │ │ ├── 0.4-Delete_OTP │ │ │ └── deleteOtp.cy.js │ │ │ ├── 0.5-ResendOTP │ │ │ └── resendOTP.cy.js │ │ │ ├── 0.6-OTP_Send │ │ │ └── otpSend.cy.js │ │ │ ├── 0.7-ChangePassword │ │ │ └── changePassword.cy.js │ │ │ ├── 0.8-ResetPassword │ │ │ └── resetPassword.cy.js │ │ │ ├── 0.9-ForgotPassword │ │ │ └── forgotPassowed.cy.js │ │ │ ├── 1-UserSignIn │ │ │ └── userSignin.cy.js │ │ │ ├── 1.0-Token │ │ │ └── userToken.cy.js │ │ │ ├── 1.1-UserUploadPic │ │ │ └── userUploadPic.cy.js │ │ │ ├── 1.10-GetMatches │ │ │ └── getMatches.cy.js │ │ │ ├── 1.11-PeremiumMatch │ │ │ └── premiumMatch.cy.js │ │ │ ├── 1.12-SearchUser │ │ │ └── searchUser.cy.js │ │ │ ├── 1.13-InviteFriend │ │ │ └── inviteFriend.cy.js │ │ │ ├── 1.14-SingleInvite │ │ │ └── singleInvite.cy.js │ │ │ ├── 1.15-FriendshipStatus │ │ │ └── friendshipStatus.cy.js │ │ │ ├── 1.16-UpdateFriends │ │ │ └── updateFriends.cy.js │ │ │ ├── 1.17-FriendshipCount │ │ │ └── friendshipCount.cy.js │ │ │ ├── 1.18-SeeAllFriends │ │ │ └── seeAllFriends.cy.js │ │ │ ├── 1.19-InviteFriendCount │ │ │ └── inviteFriendCount.cy.js │ │ │ ├── 1.2-UserUpdatePic │ │ │ └── userUpdatePic.cy.js │ │ │ ├── 1.20-UpdateProfile │ │ │ └── updateProfile.cy.js │ │ │ ├── 1.21-SingleUser │ │ │ └── singleUser.cy.js │ │ │ ├── 1.22-ViewProfile │ │ │ └── viewProfile.cy.js │ │ │ ├── 1.23-CreateProfileView │ │ │ └── createProfileView.cy.js │ │ │ ├── 1.24-RecentVisitors │ │ │ └── recentVisitors.cy.js │ │ │ ├── 1.25-MyPhotos │ │ │ └── myPhotos.cy.js │ │ │ ├── 1.26-PublicProfile │ │ │ └── publicProfile.cy.js │ │ │ ├── 1.27-ComparePartnerPreference │ │ │ └── comparePartnerPreference.cy.js │ │ │ ├── 1.28-GetContact │ │ │ └── getContact.cy.js │ │ │ ├── 1.29-MatchCount │ │ │ └── matchCount.cy.js │ │ │ ├── 1.3-UserDeletePic │ │ │ └── userDeletePic.cy.js │ │ │ ├── 1.30-HideUnhide │ │ │ └── hideUnhide.cy.js │ │ │ ├── 1.31-Payments │ │ │ ├── 1.1-SSL_Limit │ │ │ │ └── sslLimt.cy.js │ │ │ ├── 1.2-AllPayment │ │ │ │ └── allPayment.cy.js │ │ │ ├── 1.3-PaypalOrder │ │ │ │ └── paypalOrder.cy.js │ │ │ └── 1.4-CheckOut │ │ │ │ └── checkout.cy.js │ │ │ ├── 1.32-Notification │ │ │ ├── 1.01-GetMyNotification │ │ │ │ └── getNotification.cy.js │ │ │ ├── 1.02-AddPushtoken │ │ │ │ └── addPushToken.cy.js │ │ │ ├── 1.03-MarkedReadNotification │ │ │ │ └── readNotification.cy.js │ │ │ └── 1.04-RemovePushtoken │ │ │ │ └── removePushToken.cy.js │ │ │ ├── 1.33-ChatAPI │ │ │ ├── 2.1-CreateChat │ │ │ │ └── createChat.cy.js │ │ │ ├── 2.10-AddUserChannel │ │ │ │ └── addUserChannel.cy.js │ │ │ ├── 2.11-ArchiveChannel │ │ │ │ └── archivedChannel.cy.js │ │ │ ├── 2.12-LeaveGroup │ │ │ │ └── leaveGroup.cy.js │ │ │ ├── 2.13-JoinChannel │ │ │ │ └── joinChannel.cy.js │ │ │ ├── 2.14-ReactMessage │ │ │ │ └── reactmessage.cy.js │ │ │ ├── 2.15-UpdateMessage │ │ │ │ └── updateMessage.cy.js │ │ │ ├── 2.16-UploadFile │ │ │ │ └── uploadFile.cy.js │ │ │ ├── 2.17-UpdateStatus │ │ │ │ └── updateStatus.cy.js │ │ │ ├── 2.18-DeleteMessage │ │ │ │ └── deleteMessage.cy.js │ │ │ ├── 2.19-SearchChatFile │ │ │ │ └── searchChatMedia.cy.js │ │ │ ├── 2.2-MyChats │ │ │ │ └── myChats.cy.js │ │ │ ├── 2.3-ChatMassage │ │ │ │ └── chatMesssage.cy.js │ │ │ ├── 2.4-CreateChannel │ │ │ │ └── createGroup.cy.js │ │ │ ├── 2.5-UpdateChannel │ │ │ │ └── updateGroup.cy.js │ │ │ ├── 2.6-SendMessages │ │ │ │ └── sendMessage.cy.js │ │ │ ├── 2.7-SearchUserChat │ │ │ │ └── searchUserChat.cy.js │ │ │ ├── 2.8-UpdateChats │ │ │ │ └── updateChatMessage.cy.js │ │ │ └── 2.9-RemoveUser │ │ │ │ └── removeUser.cy.js │ │ │ ├── 1.34-All_Order │ │ │ └── all_Order.cy.js │ │ │ ├── 1.35-Profile_status │ │ │ └── profileStatus.cy.js │ │ │ ├── 1.36-Single_order │ │ │ └── singleOrder.cy.js │ │ │ ├── 1.37-Update_Email │ │ │ └── updateEmail.cy.js │ │ │ ├── 1.38-User_Connction │ │ │ └── userConnection.cy.js │ │ │ ├── 1.4-ProfilePicUpdate │ │ │ └── profilePicUpdate.cy.js │ │ │ ├── 1.5-PartnerPreference │ │ │ └── partnerPreference.cy.js │ │ │ ├── 1.6-VerifyNID │ │ │ └── verifyNID.js │ │ │ ├── 1.7-Hobbies │ │ │ └── hobbies.cy.js │ │ │ ├── 1.8-VerifyUser │ │ │ └── verifyUser.cy.js │ │ │ └── 1.9-SeeAllUser │ │ │ └── seeAllUser.cy.js │ │ └── Database │ │ └── database.js ├── fixtures │ ├── chatId.json │ ├── chatMemberId.json │ ├── chatUserId.json │ ├── createRoleID.json │ ├── example.json │ ├── file │ │ └── Test_file.doc │ ├── groupId.json │ ├── images │ │ └── happy.jpg │ ├── orderId.json │ ├── packageId.json │ ├── sentChatId.json │ ├── staffId.json │ ├── staffroleId.json │ ├── updatedFriendId.json │ ├── user.json │ └── userId.json ├── reports │ ├── html │ │ └── index.html │ └── mocha └── support │ ├── commands.js │ └── e2e.js ├── package.json └── runTest.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | screenshots -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | BiyeKorun_Automation_Testing_on_Cypress 2 | -------------------------------------------------------------------------------- /cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress.config.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/1-AdminFlow/1.01-Admin[Auth]/1.1.1-Admin_Login/adminLogin.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/1-AdminFlow/1.01-Admin[Auth]/1.1.1-Admin_Login/adminLogin.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/1-AdminFlow/1.01-Admin[Auth]/1.1.2-Edit_Profile/editProfile.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/1-AdminFlow/1.01-Admin[Auth]/1.1.2-Edit_Profile/editProfile.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/1-AdminFlow/1.02-Admin[Staff]/1.2.1-Get_All_Staff/allStaff.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/1-AdminFlow/1.02-Admin[Staff]/1.2.1-Get_All_Staff/allStaff.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/1-AdminFlow/1.02-Admin[Staff]/1.2.2-Create_Staff/createStaff.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/1-AdminFlow/1.02-Admin[Staff]/1.2.2-Create_Staff/createStaff.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/1-AdminFlow/1.02-Admin[Staff]/1.2.3-Update_Staff/updateStaff.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/1-AdminFlow/1.02-Admin[Staff]/1.2.3-Update_Staff/updateStaff.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/1-AdminFlow/1.02-Admin[Staff]/1.2.4-Delete_Staff/deleteStaff.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/1-AdminFlow/1.02-Admin[Staff]/1.2.4-Delete_Staff/deleteStaff.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/1-AdminFlow/1.02-Admin[Staff]/1.2.5-Get_all_staff/getStaffRole.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/1-AdminFlow/1.02-Admin[Staff]/1.2.5-Get_all_staff/getStaffRole.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/1-AdminFlow/1.02-Admin[Staff]/1.2.6-Create_Staff_Roll/createStaffRoll.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/1-AdminFlow/1.02-Admin[Staff]/1.2.6-Create_Staff_Roll/createStaffRoll.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/1-AdminFlow/1.02-Admin[Staff]/1.2.7-Update_Staff_Roll/updateStaffRoll.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/1-AdminFlow/1.02-Admin[Staff]/1.2.7-Update_Staff_Roll/updateStaffRoll.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/1-AdminFlow/1.02-Admin[Staff]/1.2.8-Delete_Role/deleteRole.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/1-AdminFlow/1.02-Admin[Staff]/1.2.8-Delete_Role/deleteRole.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/1-AdminFlow/1.03-Admin_Dashboard_Management/3.1-DashboardInfo/dashboardInfo.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/1-AdminFlow/1.03-Admin_Dashboard_Management/3.1-DashboardInfo/dashboardInfo.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/1-AdminFlow/1.03-Admin_Dashboard_Management/3.2-UserStatistic/userStatistic.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/1-AdminFlow/1.03-Admin_Dashboard_Management/3.2-UserStatistic/userStatistic.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/2-Packages/2.1-Get_Package/getPackage.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/2-Packages/2.1-Get_Package/getPackage.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/2-Packages/2.2-Package_Create/packageCreate.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/2-Packages/2.2-Package_Create/packageCreate.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/2-Packages/2.3-Package_Update/packageUpdate.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/2-Packages/2.3-Package_Update/packageUpdate.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/2-Packages/2.4-Delete_Package/deletePackage.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/2-Packages/2.4-Delete_Package/deletePackage.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/2-Packages/2.5-Get_All_Package/getAllPackage.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/2-Packages/2.5-Get_All_Package/getAllPackage.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/2-Packages/2.6-Create_default_Package/createDeafultPackage.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/2-Packages/2.6-Create_default_Package/createDeafultPackage.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/2-Packages/2.7-Update_Deafult_Package/updateDefaultPackage.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/2-Packages/2.7-Update_Deafult_Package/updateDefaultPackage.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/3-PublicAPI/UniversityName/universityName.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/3-PublicAPI/UniversityName/universityName.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/3-PublicAPI/UploadFile/uploadFile.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/3-PublicAPI/UploadFile/uploadFile.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/0.1-Register/newRegister.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/0.1-Register/newRegister.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/0.2-SendOTP/sendOTP.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/0.2-SendOTP/sendOTP.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/0.3-VerifyOTP/verifyOTP.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/0.3-VerifyOTP/verifyOTP.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/0.4-Delete_OTP/deleteOtp.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/0.4-Delete_OTP/deleteOtp.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/0.5-ResendOTP/resendOTP.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/0.5-ResendOTP/resendOTP.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/0.6-OTP_Send/otpSend.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/0.6-OTP_Send/otpSend.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/0.7-ChangePassword/changePassword.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/0.7-ChangePassword/changePassword.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/0.8-ResetPassword/resetPassword.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/0.8-ResetPassword/resetPassword.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/0.9-ForgotPassword/forgotPassowed.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/0.9-ForgotPassword/forgotPassowed.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1-UserSignIn/userSignin.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1-UserSignIn/userSignin.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.0-Token/userToken.cy.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.1-UserUploadPic/userUploadPic.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.1-UserUploadPic/userUploadPic.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.10-GetMatches/getMatches.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.10-GetMatches/getMatches.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.11-PeremiumMatch/premiumMatch.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.11-PeremiumMatch/premiumMatch.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.12-SearchUser/searchUser.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.12-SearchUser/searchUser.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.13-InviteFriend/inviteFriend.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.13-InviteFriend/inviteFriend.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.14-SingleInvite/singleInvite.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.14-SingleInvite/singleInvite.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.15-FriendshipStatus/friendshipStatus.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.15-FriendshipStatus/friendshipStatus.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.16-UpdateFriends/updateFriends.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.16-UpdateFriends/updateFriends.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.17-FriendshipCount/friendshipCount.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.17-FriendshipCount/friendshipCount.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.18-SeeAllFriends/seeAllFriends.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.18-SeeAllFriends/seeAllFriends.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.19-InviteFriendCount/inviteFriendCount.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.19-InviteFriendCount/inviteFriendCount.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.2-UserUpdatePic/userUpdatePic.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.2-UserUpdatePic/userUpdatePic.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.20-UpdateProfile/updateProfile.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.20-UpdateProfile/updateProfile.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.21-SingleUser/singleUser.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.21-SingleUser/singleUser.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.22-ViewProfile/viewProfile.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.22-ViewProfile/viewProfile.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.23-CreateProfileView/createProfileView.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.23-CreateProfileView/createProfileView.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.24-RecentVisitors/recentVisitors.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.24-RecentVisitors/recentVisitors.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.25-MyPhotos/myPhotos.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.25-MyPhotos/myPhotos.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.26-PublicProfile/publicProfile.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.26-PublicProfile/publicProfile.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.27-ComparePartnerPreference/comparePartnerPreference.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.27-ComparePartnerPreference/comparePartnerPreference.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.28-GetContact/getContact.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.28-GetContact/getContact.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.29-MatchCount/matchCount.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.29-MatchCount/matchCount.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.3-UserDeletePic/userDeletePic.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.3-UserDeletePic/userDeletePic.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.30-HideUnhide/hideUnhide.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.30-HideUnhide/hideUnhide.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.31-Payments/1.1-SSL_Limit/sslLimt.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.31-Payments/1.1-SSL_Limit/sslLimt.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.31-Payments/1.2-AllPayment/allPayment.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.31-Payments/1.2-AllPayment/allPayment.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.31-Payments/1.3-PaypalOrder/paypalOrder.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.31-Payments/1.3-PaypalOrder/paypalOrder.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.31-Payments/1.4-CheckOut/checkout.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.31-Payments/1.4-CheckOut/checkout.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.32-Notification/1.01-GetMyNotification/getNotification.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.32-Notification/1.01-GetMyNotification/getNotification.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.32-Notification/1.02-AddPushtoken/addPushToken.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.32-Notification/1.02-AddPushtoken/addPushToken.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.32-Notification/1.03-MarkedReadNotification/readNotification.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.32-Notification/1.03-MarkedReadNotification/readNotification.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.32-Notification/1.04-RemovePushtoken/removePushToken.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.32-Notification/1.04-RemovePushtoken/removePushToken.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.33-ChatAPI/2.1-CreateChat/createChat.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.33-ChatAPI/2.1-CreateChat/createChat.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.33-ChatAPI/2.10-AddUserChannel/addUserChannel.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.33-ChatAPI/2.10-AddUserChannel/addUserChannel.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.33-ChatAPI/2.11-ArchiveChannel/archivedChannel.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.33-ChatAPI/2.11-ArchiveChannel/archivedChannel.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.33-ChatAPI/2.12-LeaveGroup/leaveGroup.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.33-ChatAPI/2.12-LeaveGroup/leaveGroup.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.33-ChatAPI/2.13-JoinChannel/joinChannel.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.33-ChatAPI/2.13-JoinChannel/joinChannel.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.33-ChatAPI/2.14-ReactMessage/reactmessage.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.33-ChatAPI/2.14-ReactMessage/reactmessage.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.33-ChatAPI/2.15-UpdateMessage/updateMessage.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.33-ChatAPI/2.15-UpdateMessage/updateMessage.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.33-ChatAPI/2.16-UploadFile/uploadFile.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.33-ChatAPI/2.16-UploadFile/uploadFile.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.33-ChatAPI/2.17-UpdateStatus/updateStatus.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.33-ChatAPI/2.17-UpdateStatus/updateStatus.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.33-ChatAPI/2.18-DeleteMessage/deleteMessage.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.33-ChatAPI/2.18-DeleteMessage/deleteMessage.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.33-ChatAPI/2.19-SearchChatFile/searchChatMedia.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.33-ChatAPI/2.19-SearchChatFile/searchChatMedia.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.33-ChatAPI/2.2-MyChats/myChats.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.33-ChatAPI/2.2-MyChats/myChats.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.33-ChatAPI/2.3-ChatMassage/chatMesssage.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.33-ChatAPI/2.3-ChatMassage/chatMesssage.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.33-ChatAPI/2.4-CreateChannel/createGroup.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.33-ChatAPI/2.4-CreateChannel/createGroup.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.33-ChatAPI/2.5-UpdateChannel/updateGroup.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.33-ChatAPI/2.5-UpdateChannel/updateGroup.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.33-ChatAPI/2.6-SendMessages/sendMessage.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.33-ChatAPI/2.6-SendMessages/sendMessage.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.33-ChatAPI/2.7-SearchUserChat/searchUserChat.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.33-ChatAPI/2.7-SearchUserChat/searchUserChat.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.33-ChatAPI/2.8-UpdateChats/updateChatMessage.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.33-ChatAPI/2.8-UpdateChats/updateChatMessage.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.33-ChatAPI/2.9-RemoveUser/removeUser.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.33-ChatAPI/2.9-RemoveUser/removeUser.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.34-All_Order/all_Order.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.34-All_Order/all_Order.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.35-Profile_status/profileStatus.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.35-Profile_status/profileStatus.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.36-Single_order/singleOrder.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.36-Single_order/singleOrder.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.37-Update_Email/updateEmail.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.37-Update_Email/updateEmail.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.38-User_Connction/userConnection.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.38-User_Connction/userConnection.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.4-ProfilePicUpdate/profilePicUpdate.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.4-ProfilePicUpdate/profilePicUpdate.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.5-PartnerPreference/partnerPreference.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.5-PartnerPreference/partnerPreference.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.6-VerifyNID/verifyNID.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.7-Hobbies/hobbies.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.7-Hobbies/hobbies.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.8-VerifyUser/verifyUser.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.8-VerifyUser/verifyUser.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/API/4-UserFlow/1.9-SeeAllUser/seeAllUser.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/e2e/Backend/API/4-UserFlow/1.9-SeeAllUser/seeAllUser.cy.js -------------------------------------------------------------------------------- /cypress/e2e/Backend/Database/database.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cypress/fixtures/chatId.json: -------------------------------------------------------------------------------- 1 | { 2 | "newChatId": "65c9e2e1c6a9b0c218a599f0" 3 | } -------------------------------------------------------------------------------- /cypress/fixtures/chatMemberId.json: -------------------------------------------------------------------------------- 1 | { 2 | "newChatMemberId": "65c9e2e1c6a9b0c218a599f0" 3 | } -------------------------------------------------------------------------------- /cypress/fixtures/chatUserId.json: -------------------------------------------------------------------------------- 1 | { 2 | "userChatId": "66524152c192875f0234809c" 3 | } -------------------------------------------------------------------------------- /cypress/fixtures/createRoleID.json: -------------------------------------------------------------------------------- 1 | { 2 | "CreateStaffroleId": "665240fec192875f02347f66" 3 | } -------------------------------------------------------------------------------- /cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/fixtures/example.json -------------------------------------------------------------------------------- /cypress/fixtures/file/Test_file.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/fixtures/file/Test_file.doc -------------------------------------------------------------------------------- /cypress/fixtures/groupId.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "66524152c192875f02348099" 3 | } -------------------------------------------------------------------------------- /cypress/fixtures/images/happy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/fixtures/images/happy.jpg -------------------------------------------------------------------------------- /cypress/fixtures/orderId.json: -------------------------------------------------------------------------------- 1 | { 2 | "newOrderId": "65cb108dc6a9b0c218a5cb07" 3 | } -------------------------------------------------------------------------------- /cypress/fixtures/packageId.json: -------------------------------------------------------------------------------- 1 | { 2 | "newId": "66524037c192875f02347c7f" 3 | } -------------------------------------------------------------------------------- /cypress/fixtures/sentChatId.json: -------------------------------------------------------------------------------- 1 | { 2 | "sentId": "66524159c192875f023480bc" 3 | } -------------------------------------------------------------------------------- /cypress/fixtures/staffId.json: -------------------------------------------------------------------------------- 1 | { 2 | "AdminStaffId": "653c6f308e09a2f6659ba020" 3 | } -------------------------------------------------------------------------------- /cypress/fixtures/staffroleId.json: -------------------------------------------------------------------------------- 1 | { 2 | "AdminStaffroleId": "654607f34af87d306958c2eb" 3 | } -------------------------------------------------------------------------------- /cypress/fixtures/updatedFriendId.json: -------------------------------------------------------------------------------- 1 | { 2 | "newId": "66524086c192875f02347d50" 3 | } -------------------------------------------------------------------------------- /cypress/fixtures/user.json: -------------------------------------------------------------------------------- 1 | { 2 | "userEmail": "reta_swift@hotmail.com" 3 | } -------------------------------------------------------------------------------- /cypress/fixtures/userId.json: -------------------------------------------------------------------------------- 1 | { 2 | "userId": "66524057c192875f02347ce1" 3 | } -------------------------------------------------------------------------------- /cypress/reports/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/reports/html/index.html -------------------------------------------------------------------------------- /cypress/reports/mocha: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/support/commands.js -------------------------------------------------------------------------------- /cypress/support/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/cypress/support/e2e.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/package.json -------------------------------------------------------------------------------- /runTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mituldas1999/BiyeKorun_Automation_Testing_on_Cypress/HEAD/runTest.js --------------------------------------------------------------------------------