Skip to content

Commit

Permalink
Merge pull request #1212 from GSA/1091-fix-nightly-run-fails
Browse files Browse the repository at this point in the history
PXBF-1091-fix-nightly-run-fails: suppress errors on usagov benefit finder
  • Loading branch information
scottqueen-bixal authored Apr 16, 2024
2 parents 05272ee + a85a887 commit ddb5e41
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
import { pageObjects } from '../../support/pageObjects'

describe('Validate benefit-finder card on benefits page', () => {
Cypress.on('uncaught:exception', (_err, runnable) => {
return false
})
it('Should navigate to Benefit finder when clicking on Benefit finder card', () => {
cy.visit('/benefits')
pageObjects.cardGroup().contains('Benefit finder').click()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
import { pageObjects } from '../../support/pageObjects'

describe('Validate user can navigate each path of mobile menu and breadcrumb displays correctly', () => {
Cypress.on('uncaught:exception', (_err, runnable) => {
return false
})
beforeEach(() => {
cy.visit('/benefit-finder')
})
Expand Down

0 comments on commit ddb5e41

Please sign in to comment.