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

8 lines
255 B
JavaScript

describe('policy sets', () => {
it('load the table', () => {
cy.visit('/')
cy.contains('Policy Set').click()
cy.contains('A harness policy set allows you to group policies and configure where they will be enforced.')
})
})