drone/web/cypress/integration/policy.spec.js
2022-08-12 12:09:57 -07:00

8 lines
234 B
JavaScript

describe('policies', () => {
it('load the table', () => {
cy.visit('/')
cy.contains('Policies').click()
cy.get('[class="TableV2--row TableV2--card TableV2--clickable"]').should('have.length', 12)
})
})