Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/noriste/cypress-react-devtools

A working React+Redux app to easily (but MANUALLY) verify if the React devtools are working with the Cypress-controlled browser.
https://github.com/noriste/cypress-react-devtools

cypress devtools react redux

Last synced: 11 days ago
JSON representation

A working React+Redux app to easily (but MANUALLY) verify if the React devtools are working with the Cypress-controlled browser.

Awesome Lists containing this project

README

        

# cypress-react-devtools

A working React+Redux app to easily (but **MANUALLY**) verify if the React devtools are working with the Cypress-controlled browser.

[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)
[![Open Source
Love](https://badges.frapsoft.com/os/mit/mit.svg?v=102)](https://github.com/ellerbrock/open-source-badge/)

*Tested on Cypress 4 and Firefox too!*

### Why?

Cypress is an amazing tool and it can be leveraged even as a development tool, not only as a testing tool (read the [Use your testing tool as your primary development tool](https://github.com/NoriSte/ui-testing-best-practices/blob/master/sections/generic-best-practices/use-your-testing-tool-as-your-primary-development-tool.md) article).

To do that, the existing devtool must work with the Cypress-controlled browser too (see the [Support React Dev Tools issue](https://github.com/bahmutov/cypress-react-unit-test/issues/15)). This application allows you to easily check that the React devtools work as expected.

### Usage

- clone the repository
- launch `npm install`
- launch `npm start`
- in a dedicated terminal tab, launch `npm run cy:open`
- in the Cypress UI, choose a Chrome instance with the React and Redux devtools installed (see the [Chrome instance screenshot](#chrome-instance-screenshot))
- open the devtools and check that they work (see the [Working devtool screenshot](#working-devtools-screenshot))

Please note that, in order to have the React DevTools working into Cypress, the key is the following code, put into the [index.html page](https://github.com/NoriSte/cypress-react-devtools/blob/master/public/index.html#L8.L10).
```js
if (window.Cypress) {
window["__REACT_DEVTOOLS_GLOBAL_HOOK__"] = window.parent["__REACT_DEVTOOLS_GLOBAL_HOOK__"];
}
```

### Screenshots
#### Chrome instance screenshot
Chrome instance

#### Working devtools screenshot
devtools

## Contributors

Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):

Stefano Magni
Stefano Magni

💻 📖

This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!