Skip to content

Commit

Permalink
if environment URL contains 'test' use applicationId 10492
Browse files Browse the repository at this point in the history
  • Loading branch information
dangood84 committed Dec 19, 2024
1 parent b0337a2 commit dcfda9d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { faker } from '@faker-js/faker'
describe('Invite/remove contributor', () => {
const contributorFirstName = faker.person.firstName()
const contributorEmail = faker.internet.email()
const applicationId = '10280'
const applicationId = Cypress.env('URL').includes('test') ? '10492' : '10280'

const homeAssertions = {
warningIcon: () => cy.get('span[class="govuk-warning-text__icon"]'),
Expand Down

0 comments on commit dcfda9d

Please sign in to comment.