GSA/code-gov-front-end

View on GitHub
cypress/integration/compliance-dashboard-direct-nav.spec.js

Summary

Maintainability
A
0 mins
Test Coverage
describe('federal agencies page tests (direct nav)', () => {
  beforeEach(() => {
    cy.visit('/agency-compliance/compliance/dashboard')
  })

  it('has the proper verbiage', () => {
    cy.contains('#agencycompliance', /compliance/i).should('exist')
  })

  it('contains the compliance dashboard component', () => {
    cy.get('.dashboard-container').should('exist')
  })
})