fix: Added missing semicolon
This commit is contained in:
parent
8c4bd951a8
commit
f9f753c95c
@ -12,17 +12,17 @@ context('Form', () => {
|
|||||||
cy.get('.primary-action').click();
|
cy.get('.primary-action').click();
|
||||||
cy.get('.page-title').should('contain', 'Open');
|
cy.get('.page-title').should('contain', 'Open');
|
||||||
cy.get('.form-inner-toolbar button:contains("Lost")').click({ force: true });
|
cy.get('.form-inner-toolbar button:contains("Lost")').click({ force: true });
|
||||||
cy.get('.modal input[data-fieldname="lost_reason"]').as('input')
|
cy.get('.modal input[data-fieldname="lost_reason"]').as('input');
|
||||||
cy.get('@input').focus().type('Higher', { delay: 200 })
|
cy.get('@input').focus().type('Higher', { delay: 200 });
|
||||||
cy.get('.modal .awesomplete ul')
|
cy.get('.modal .awesomplete ul')
|
||||||
.should('be.visible')
|
.should('be.visible')
|
||||||
.get('li:contains("Higher Price")')
|
.get('li:contains("Higher Price")')
|
||||||
.click({ force: true })
|
.click({ force: true });
|
||||||
cy.get('@input').focus().type('No Followup', { delay: 200 })
|
cy.get('@input').focus().type('No Followup', { delay: 200 });
|
||||||
cy.get('.modal .awesomplete ul')
|
cy.get('.modal .awesomplete ul')
|
||||||
.should('be.visible')
|
.should('be.visible')
|
||||||
.get('li:contains("No Followup")')
|
.get('li:contains("No Followup")')
|
||||||
.click()
|
.click();
|
||||||
|
|
||||||
cy.fill_field('detailed_reason', 'Test Detailed Reason', 'Text');
|
cy.fill_field('detailed_reason', 'Test Detailed Reason', 'Text');
|
||||||
cy.get('.modal button:contains("Declare Lost")').click({ force: true });
|
cy.get('.modal button:contains("Declare Lost")').click({ force: true });
|
||||||
|
Loading…
x
Reference in New Issue
Block a user