test: refs #6683 add Cypress integration tests files for property section
gitea/salix-front/pipeline/pr-dev This commit is unstable Details

This commit is contained in:
Jose Antonio Tubau 2025-04-02 12:10:21 +02:00
parent 2bfa8368ab
commit 1fc0e4d958
5 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
describe('Property list', () => {
const selectors = {
table: 'propertyListTable',
};
beforeEach(() => {
cy.viewport(1920, 1080);
cy.login('developer');
cy.visit('/#/property/list');
cy.typeSearchbar('{enter}');
});
it('Should list properties', () => {
cy.get('.q-table')
.children()
.should('be.visible')
.should('have.length.greaterThan', 0);
});
});