salix-front/test/cypress/integration/client/credit-management/clientCreditOpinion.spec.js

14 lines
384 B
JavaScript

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