ws-nextjs-app/cypress/e2e/send/index.cy.ts

Summary

Maintainability
A
0 mins
Test Coverage
import pageVisit from './pageVisit';
import { testsThatAlwaysRunForAllPages } from '../testsForAllPages';
import runTestsForPage from '../../support/helpers/runTestsForPage';

const testDetails = {
  pageType: 'send',
  testSuites: [
    {
      path: '/somali/send/u130092370',
      id: 'u130092370',
      runforEnv: ['test', 'local'],
      service: 'somali',
      tests: [testsThatAlwaysRunForAllPages, pageVisit],
    },
    {
      path: '/mundo/send/u50853489',
      id: 'u50853489',
      service: 'mundo',
      runforEnv: ['test', 'local'],
      tests: [testsThatAlwaysRunForAllPages, pageVisit],
    },
  ],
};

describe('Send Page Spec', () => {
  runTestsForPage(testDetails);
});