Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update 438 attestation text box label text. #2063

Merged
merged 1 commit into from
Nov 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const StatutoryRegulatoryAttestationQuestion =
'Do you attest that this contract complies with all applicable statutory and regulatory requirements including those contained in Title 42 Part 438 and Part 457 of the Code of Federal Regulations (CFR)?'

const StatutoryRegulatoryAttestationDescription =
'Please provide a brief description of the contract’s non-compliance (with regulatory citations) and expected timeframe for remediation'
'Provide a brief description of the contract’s non-compliance (with regulatory citations) and expected timeframe for remediation'

export {
StatutoryRegulatoryAttestation,
Expand Down
4 changes: 2 additions & 2 deletions services/cypress/support/stateSubmissionFormCommands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ Cypress.Commands.add('fillOutBaseContractDetails', () => {
// Contract 438 attestation question
cy.findByText('No, the contract does not fully comply with all applicable requirements').click()

cy.findByRole('textbox', {name: 'Please provide a brief description of the contract’s non-compliance (with regulatory citations) and expected timeframe for remediation'})
cy.findByRole('textbox', {name: 'Provide a brief description of the contract’s non-compliance (with regulatory citations) and expected timeframe for remediation'})
.type('Non compliance explanation')

cy.findByText('Fully executed').click()
Expand Down Expand Up @@ -182,7 +182,7 @@ Cypress.Commands.add('fillOutAmendmentToBaseContractDetails', () => {
// Must be on '/submissions/:id/edit/contract-details'
// Contract 438 attestation question
cy.findByText('No, the contract does not fully comply with all applicable requirements').click()
cy.findByRole('textbox', {name: 'Please provide a brief description of the contract’s non-compliance (with regulatory citations) and expected timeframe for remediation'})
cy.findByRole('textbox', {name: 'Provide a brief description of the contract’s non-compliance (with regulatory citations) and expected timeframe for remediation'})
.type('Non compliance explanation')

cy.findByText('Unexecuted by some or all parties').click()
Expand Down
Loading