paint-brush
E2E Testing React applications with TestCafeby@amoskovkin
14,821 reads
14,821 reads

E2E Testing React applications with TestCafe

by Alexander MoskovkinApril 5th, 2017
Read on Terminal Reader
Read this story w/o Javascript
tldt arrow

Too Long; Didn't Read

Born deep inside <a href="https://hackernoon.com/tagged/facebook" target="_blank">Facebook</a> labs, <a href="https://facebook.github.io/react/" target="_blank">React</a> gained a huge popularity among the developers who make web applications with complex user interfaces. Being widely used in single-page application projects that require easy scaling, simple maintenance and fast performance, React has become a de facto standard for the <a href="https://hackernoon.com/tagged/javascript" target="_blank">JavaScript</a> developer community. Companies like Facebook, Netflix, Airbnb and many others use React as a main framework to build the UI for their services.

Companies Mentioned

Mention Thumbnail
Mention Thumbnail
featured image - E2E Testing React applications with TestCafe
Alexander Moskovkin HackerNoon profile picture

Introduction

Born deep inside Facebook labs, React gained a huge popularity among the developers who make web applications with complex user interfaces. Being widely used in single-page application projects that require easy scaling, simple maintenance and fast performance, React has become a de facto standard for the JavaScript developer community. Companies like Facebook, Netflix, Airbnb and many others use React as a main framework to build the UI for their services.

React uses a component-based approach to the application structure offering users to build the application UI by combining components that possess their own behavior, state and view. With this, React adds another abstraction layer for HTML elements. To enable React developers to stay in the component-based paradigm while writing e2e tests, we at TestCafe team made testcafe-react-selectors – a plugin that introduces a native approach to testing React applications.

In this article, we will use TestCafe to test the React TodoMVC application.

Todo MVC Application

To deploy the Todo MVC app for testing, clone the Redux repository at https://github.com/reactjs/redux and open the TodoMVC example directory (/examples/todomvc). Install the dependencies and run npm start from this directory to build the application in the development mode.


git clone https://github.com/reactjs/reduxcd redux/examples/todomvc


npm installnpm start

The application will be deployed at http://localhost:3000.

It has the following component structure.

To test in multiple browsers in parallel, you can use a comma-separated list like chrome,firefox,edge or the all alias to run tests in all locally installed browsers.

testcafe all todomvc.js

You can also define the npm test command that will run TestCafe tests. Note that you need a locally installed TestCafe module to launch tests from an npm script. To introduce the npm test command, add the following code to the project’s package.json file.

You can find more information about the TestCafe command line interface here.

Extending TestCafe Functionality

Learn more about the TestCafe ecosystem here. If you need more functionality in test code, you can use any node.js module. TestCafe also provides the extended capabilities to use portable and remote browsers and customize the test run report format.

Community

If you have question regarding TestCafe — feel free to ask on our forum or GitHub page!