forked from verdnatura/salix-front
26 lines
723 B
JavaScript
26 lines
723 B
JavaScript
|
/// <reference types="cypress" />
|
||
|
describe('ClaimAction', () => {
|
||
|
const claimId = 2;
|
||
|
const firstLineReason = 'tbody > :nth-child(1) > :nth-child(2)';
|
||
|
const firstRow = 'tbody > :nth-child(1)';
|
||
|
|
||
|
beforeEach(() => {
|
||
|
cy.viewport(1920, 1080);
|
||
|
cy.login('developer');
|
||
|
cy.visit(`/#/claim/${claimId}/action`);
|
||
|
});
|
||
|
|
||
|
it('should import claim', () => {
|
||
|
cy.get('[title="Import claim"]').click();
|
||
|
});
|
||
|
|
||
|
it('should change destination', () => {
|
||
|
const rowData = [true, null, null, 'Bueno', null, null, null, null, null, null];
|
||
|
cy.fillRow(firstRow, rowData);
|
||
|
});
|
||
|
|
||
|
it('should regularize', () => {
|
||
|
cy.get('[title="Regularize"]').click();
|
||
|
});
|
||
|
});
|