mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-26 08:24:47 +00:00
fix: Added missing semicolon
This commit is contained in:
@@ -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 });
|
||||||
|
|||||||
Reference in New Issue
Block a user