UNPKG

@revoloo/cypress6

Version:

Cypress.io end to end testing tool

14 lines (11 loc) 261 B
import React from 'react' import { mount } from '@cypress/react' const Comp = () => { return <div>Hello world!</div> } describe('React', () => { it('renders a react component', () => { mount(<Comp />) cy.get('div').contains('Hello world') }) })