Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

20 righe
700 B

  1. // TODO: Enable this again
  2. // currently this is flaky possibly because of different timezone in CI
  3. // context('Datetime Field Validation', () => {
  4. // before(() => {
  5. // cy.login();
  6. // cy.visit('/app/communication');
  7. // });
  8. // it('datetime field form validation', () => {
  9. // // validating datetime field value when value is set from backend and get validated on form load.
  10. // cy.window().its('frappe').then(frappe => {
  11. // return frappe.xcall("frappe.tests.ui_test_helpers.create_communication_record");
  12. // }).then(doc => {
  13. // cy.visit(`/app/communication/${doc.name}`);
  14. // cy.get('.indicator-pill').should('contain', 'Open').should('have.class', 'red');
  15. // });
  16. // });
  17. // });