From c4bc0be885d737ebdf8c0a02a6fc97ebd1719557 Mon Sep 17 00:00:00 2001 From: Madhurya Liyanage Date: Mon, 15 May 2023 14:40:42 +0530 Subject: [PATCH] Added a missing approver --- .../cypress/pilot/NDR_PP1/learninganddev.cy.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/spiffworkflow-frontend/cypress/pilot/NDR_PP1/learninganddev.cy.js b/spiffworkflow-frontend/cypress/pilot/NDR_PP1/learninganddev.cy.js index 71836d933..b4d9b98ca 100644 --- a/spiffworkflow-frontend/cypress/pilot/NDR_PP1/learninganddev.cy.js +++ b/spiffworkflow-frontend/cypress/pilot/NDR_PP1/learninganddev.cy.js @@ -871,6 +871,19 @@ describe.only('Learning and Development Path - Without Files', () => { 'Task: Reminder: Check Existing Budget', 'approve' ); + + const peopleOpsUsername = Cypress.env('peopleopssme_username'); + const peopleOpsPassword = Cypress.env('peopleopssme_password'); + cy.log(`=====peopleOpsUsername : ${peopleOpsUsername}`); + cy.log(`=====peopleOpsPassword : ${peopleOpsPassword}`); + + submitWithUser( + peopleOpsUsername, + peopleOpsPassword, + processInstanceId, + null, + 'approve' + ); checkProcessInstanceCompleted(username, password, processInstanceId); }); });