Skip to content

Commit 7312f47

Browse files
committed
updating readmes
1 parent 9ff6b06 commit 7312f47

File tree

5 files changed

+104
-0
lines changed

5 files changed

+104
-0
lines changed

angular/readme.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Cypress Component Testing Quickstart App for Angular.
2+
3+
This is a completed version of the app from the
4+
[quickstart](https://docs.cypress.io/guides/component-testing/angular/quickstart)
5+
guide for writing component tests for Cypress with Angular.
6+
7+
To view the working tests, go into the /angular/my-awesome-app folder and run:
8+
9+
```bash
10+
npm install
11+
```
12+
13+
Then launch Cypress component testing:
14+
15+
```bash
16+
npx cypress open --component
17+
```
18+
19+
> The `--component` flag launches Cypress directly into component testing
20+
21+
Visit [docs.cypress.io](https://docs.cypress.io) for more information on
22+
component testing with Cypress.

react/readme.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Cypress Component Testing Quickstart App for React.
2+
3+
This is a completed version of the app from the
4+
[quickstart](https://docs.cypress.io/guides/component-testing/react/quickstart)
5+
guide for writing component tests for Cypress with React.
6+
7+
To view the working tests, go into the /react/my-awesome-app folder and run:
8+
9+
```bash
10+
npm install
11+
```
12+
13+
Then launch Cypress component testing:
14+
15+
```bash
16+
npx cypress open --component
17+
```
18+
19+
> The `--component` flag launches Cypress directly into component testing
20+
21+
Visit [docs.cypress.io](https://docs.cypress.io) for more information on
22+
component testing with Cypress.

readme.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Cypress Component Testing Quickstart Apps
2+
3+
This repo contains completed versions of the quickstart apps from the component
4+
testing quickstart guides on docs.cypress.io:
5+
6+
- [Angular Guide](https://docs.cypress.io/guides/component-testing/angular/quickstart) -
7+
[Completed Example App](/angular/my-awesome-app)
8+
- [React Guide](https://docs.cypress.io/guides/component-testing/react/quickstart) -
9+
[Completed Example App](/react/my-awesome-app)
10+
- [Svelte Guide](https://docs.cypress.io/guides/component-testing/svelte/quickstart) -
11+
[Completed Example App](/svelte/my-awesome-app)
12+
- [Vue Guide](https://docs.cypress.io/guides/component-testing/vue/quickstart) -
13+
[Completed Example App](/vue/my-awesome-app)
14+
15+
Visit [docs.cypress.io](https://docs.cypress.io) for more information on
16+
component testing with Cypress.

svelte/readme.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Cypress Component Testing Quickstart App for Svelte.
2+
3+
This is a completed version of the app from the
4+
[quickstart](https://docs.cypress.io/guides/component-testing/svelte/quickstart)
5+
guide for writing component tests for Cypress with Svelte.
6+
7+
To view the working tests, go into the /svelte/my-awesome-app folder and run:
8+
9+
```bash
10+
npm install
11+
```
12+
13+
Then launch Cypress component testing:
14+
15+
```bash
16+
npx cypress open --component
17+
```
18+
19+
> The `--component` flag launches Cypress directly into component testing
20+
21+
Visit [docs.cypress.io](https://docs.cypress.io) for more information on
22+
component testing with Cypress.

vue/readme.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Cypress Component Testing Quickstart App for Vue.
2+
3+
This is a completed version of the app from the
4+
[quickstart](https://docs.cypress.io/guides/component-testing/vue/quickstart)
5+
guide for writing component tests for Cypress with Vue.
6+
7+
To view the working tests, go into the /vue/my-awesome-app folder and run:
8+
9+
```bash
10+
npm install
11+
```
12+
13+
Then launch Cypress component testing:
14+
15+
```bash
16+
npx cypress open --component
17+
```
18+
19+
> The `--component` flag launches Cypress directly into component testing
20+
21+
Visit [docs.cypress.io](https://docs.cypress.io) for more information on
22+
component testing with Cypress.

0 commit comments

Comments
 (0)