load.test.ts 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /**
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. */
  19. import { WORLD_HEALTH_DASHBOARD } from 'cypress/utils/urls';
  20. import { waitForChartLoad } from 'cypress/utils';
  21. import { WORLD_HEALTH_CHARTS, interceptLog } from './utils';
  22. describe('Dashboard load', () => {
  23. it('should load dashboard', () => {
  24. cy.visit(WORLD_HEALTH_DASHBOARD);
  25. WORLD_HEALTH_CHARTS.forEach(waitForChartLoad);
  26. });
  27. it('should load in edit mode', () => {
  28. cy.visit(`${WORLD_HEALTH_DASHBOARD}?edit=true&standalone=true`);
  29. cy.getBySel('discard-changes-button').should('be.visible');
  30. });
  31. it('should load in standalone mode', () => {
  32. cy.visit(`${WORLD_HEALTH_DASHBOARD}?edit=true&standalone=true`);
  33. cy.get('#app-menu').should('not.exist');
  34. });
  35. it('should load in edit/standalone mode', () => {
  36. cy.visit(`${WORLD_HEALTH_DASHBOARD}?edit=true&standalone=true`);
  37. cy.getBySel('discard-changes-button').should('be.visible');
  38. cy.get('#app-menu').should('not.exist');
  39. });
  40. // TODO flaky test. skipping to unblock CI
  41. it.skip('should send log data', () => {
  42. interceptLog();
  43. cy.visit(WORLD_HEALTH_DASHBOARD);
  44. cy.wait('@logs', { timeout: 15000 });
  45. });
  46. });