Skip to content

Remove unnecessary explanations in cypress testing #628

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions docs/testing/cypress.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,18 +58,6 @@ Under the `e2e` folder you now have these files:
* `/integration`: All your tests.
* Feel free to create tests under subfolders for better organization e.g. `/someFeatureFolder/something.spec.ts`.

## First test
* create a file `/cypress/integration/first.ts` with the following contents:

```ts
describe('google search', () => {
it('should work', () => {
cy.visit('http://www.google.com');
cy.get('#lst-ib').type('Hello world{enter}')
});
});
```

## Running in development
Open the cypress IDE using the following command.

Expand Down