dashboard.test.ts 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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 } from '../e2e/dashboard/utils';
  22. describe('Dashboard load', () => {
  23. beforeEach(() => {
  24. cy.visit(WORLD_HEALTH_DASHBOARD);
  25. WORLD_HEALTH_CHARTS.forEach(waitForChartLoad);
  26. });
  27. afterEach(() => {
  28. cy.eyesClose();
  29. });
  30. it('should load the Dashboard', () => {
  31. cy.eyesOpen({
  32. testName: 'Dashboard page',
  33. });
  34. cy.eyesCheckWindow('Dashboard loaded');
  35. });
  36. it('should load the Dashboard in edit mode', () => {
  37. cy.get('.header-with-actions')
  38. .find('[aria-label="Edit dashboard"]')
  39. .click();
  40. // wait for a chart to appear
  41. cy.get('[data-test="grid-container"]').find('.box_plot', {
  42. timeout: 10000,
  43. });
  44. cy.eyesOpen({
  45. testName: 'Dashboard edit mode',
  46. });
  47. cy.eyesCheckWindow('Dashboard edit mode loaded');
  48. });
  49. });