Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 
 

20 linhas
736 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('influxframework').then(influxframework => {
  11. // return influxframework.xcall("influxframework.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. // });