|
- import custom_submittable_doctype from '../fixtures/custom_submittable_doctype';
- const doctype_name = custom_submittable_doctype.name;
-
- context('Report View', () => {
- before(() => {
- cy.login();
- cy.visit('/app#workspace/Website');
- cy.insert_doc('DocType', custom_submittable_doctype, true);
- cy.clear_cache();
- cy.insert_doc(doctype_name, {
- 'title': 'Doc 1',
- 'description': 'Random Text',
- 'enabled': 0,
- // submit document
- 'docstatus': 1
- }, true).as('doc');
- });
- it('Field with enabled allow_on_submit should be editable.', () => {
- cy.server();
- cy.route('POST', 'api/method/frappe.client.set_value').as('value-update');
- cy.visit(`/app/List/${doctype_name}/Report`);
- // check status column added from docstatus
- cy.get('.dt-row-0 > .dt-cell--col-3').should('contain', 'Submitted');
- let cell = cy.get('.dt-row-0 > .dt-cell--col-4');
- // select the cell
- cell.dblclick();
- cell.find('input[data-fieldname="enabled"]').check({force: true});
- cy.get('.dt-row-0 > .dt-cell--col-5').click();
- cy.wait('@value-update');
- cy.get('@doc').then(doc => {
- cy.call('frappe.client.get_value', {
- doctype: doc.doctype,
- filters: {
- name: doc.name,
- },
- fieldname: 'enabled'
- }).then(r => {
- expect(r.message.enabled).to.equals(1);
- });
- });
- });
- });
|