From 285b128879dd054e1ecb74bd36d8f947656f5811 Mon Sep 17 00:00:00 2001 From: burnettk Date: Mon, 6 Mar 2023 21:53:00 -0500 Subject: [PATCH] use a1 automated test users --- spiffworkflow-frontend/cypress/pilot/pp1.cy.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/spiffworkflow-frontend/cypress/pilot/pp1.cy.js b/spiffworkflow-frontend/cypress/pilot/pp1.cy.js index 196559b6..aac3dbc8 100644 --- a/spiffworkflow-frontend/cypress/pilot/pp1.cy.js +++ b/spiffworkflow-frontend/cypress/pilot/pp1.cy.js @@ -32,7 +32,7 @@ const approveWithUser = ( describe('pp1', () => { it('can run PP1', () => { - cy.login('core5.contributor', 'core5.contributor'); + cy.login('core-a1.contributor', 'core-a1.contributor'); cy.visit('/'); cy.contains('Start New +').click(); cy.contains('Raise New Demand Request'); @@ -95,14 +95,14 @@ describe('pp1', () => { processInstanceId, 'Task: Reminder: Request Additional Budget' ); - approveWithUser('ppg.ba.sme', processInstanceId); - approveWithUser('security.sme', processInstanceId); + approveWithUser('ppg.ba-a1.sme', processInstanceId); + approveWithUser('security-a1.sme', processInstanceId); approveWithUser( - 'infra.sme', + 'infra-a1.sme', processInstanceId, 'Task: Update Application Landscape' ); - approveWithUser('legal.sme', processInstanceId); + approveWithUser('legal-a1.sme', processInstanceId); }); }); });