cicd: integration tests against main config
This commit is contained in:
parent
9dc81a6280
commit
020281c1e6
|
|
@ -52,6 +52,7 @@ jobs:
|
|||
uses: cypress-io/github-action@v6
|
||||
with:
|
||||
working-directory: integration-tests
|
||||
spec: cypress/e2e/general/*
|
||||
|
||||
- name: kill OliveTin after integration tests
|
||||
run: killall OliveTin
|
||||
|
|
|
|||
|
|
@ -8,12 +8,14 @@ describe('Homepage rendering', () => {
|
|||
})
|
||||
|
||||
it('Default buttons are rendered', () => {
|
||||
cy.get("#root-group button").should('have.length', 6)
|
||||
cy.get("#root-group button").should('have.length', 8)
|
||||
})
|
||||
|
||||
/*
|
||||
it('Switcher navigation is visible', () => {
|
||||
cy.get('#section-switcher').then($el => {
|
||||
expect(Cypress.dom.isHidden($el)).to.be.false
|
||||
})
|
||||
})
|
||||
*/
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in New Issue