Cypress: first-time-using cypress files + new GuiPort test on the UI (#584)

This commit is contained in:
Adam Kol
2022-01-04 18:02:02 +02:00
committed by GitHub
parent 282baee881
commit dbc18b9648
5 changed files with 39 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
it('check', function () {
cy.visit(`http://localhost:${Cypress.env('port')}/`)
cy.get('.header').should('be.visible')
cy.get('.TrafficPageHeader').should('be.visible')
cy.get('.TrafficPage-ListContainer').should('be.visible')
cy.get('.TrafficPage-Container').should('be.visible')
})