import React from 'react'; import { ProviderMock } from '@mocks'; import App from '@components/App'; describe('Testing Card Component', () => { beforeEach(() => { cy.mount( ); }); it('Show Text', () => { cy.get('p').contains('Edit src/frontend/InitialComponent.jsx and save to reload.'); }); });