2024-10-11 13:46:30 +00:00
|
|
|
/// <reference types="cypress" />
|
2024-11-25 22:20:15 +00:00
|
|
|
describe('Client credit opinion', () => {
|
2024-10-11 13:46:30 +00:00
|
|
|
beforeEach(() => {
|
|
|
|
cy.viewport(1280, 720);
|
|
|
|
cy.login('developer');
|
2024-11-25 22:20:15 +00:00
|
|
|
cy.visit('#/customer/1110/credit-management/credit-opinion', {
|
2024-10-11 13:46:30 +00:00
|
|
|
timeout: 5000,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
it('Should load layout', () => {
|
2024-11-22 23:51:45 +00:00
|
|
|
cy.get('.q-page').should('be.visible');
|
2024-10-11 13:46:30 +00:00
|
|
|
});
|
|
|
|
});
|