https://github.com/elevatebart/create-nested-components
https://github.com/elevatebart/create-nested-components
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/elevatebart/create-nested-components
- Owner: elevatebart
- Created: 2022-03-04T15:53:06.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-03-04T16:01:38.000Z (over 3 years ago)
- Last Synced: 2025-02-13T15:36:14.366Z (4 months ago)
- Language: JavaScript
- Size: 91.8 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Example app using nested components
This example is used to reproduce a bug in the dev process of cypress.
## March 3rd, 2020
steps to reproduce the bug
```sh
git clone https://github.com/elevatebart/create-nested-components.git
cd create-nested-components
yarn install
cd ..
git clone https://github.com/cypress-io/cypress.git
cd cypress
git checkout 10.0-release
yarn install
yarn cypress:open --project ../create-nested-components --component
```Finally:
- start component testing with chrome
- create the first spec file from post.js`Error [ERR_IPC_CHANNEL_CLOSED]: Channel closed`
## How was this repo created?
```sh
yarn create next-app --example --example nested-components create-nested-components
cd create-nested-components
yarn add -D @cypress/react @cypress/webpack-dev-server
```