0
0
Fork 0
salix-front-mindshore-fork2/test/cypress/integration/client/clientAddress.spec.js

14 lines
347 B
JavaScript

/// <reference types="cypress" />
describe('Client consignee', () => {
beforeEach(() => {
cy.viewport(1280, 720);
cy.login('developer');
cy.visit('#/customer/1110/address', {
timeout: 5000,
});
});
it('Should load layout', () => {
cy.get('.q-card').should('be.visible');
});
});