Skip to content

Commit

Permalink
docs(e2e): mention usage in root contributing
Browse files Browse the repository at this point in the history
  • Loading branch information
Haroenv committed Nov 24, 2022
1 parent c9b90df commit 4173de7
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,24 @@ To run the test continuously based on what you changed (useful when developing o
yarn test --watch
```

### End-to-end tests

End-to-end tests are defined by the [tests/e2e](./tests/e2e/README.md) project.

To run them locally:

```sh
yarn test:e2e:local
```

To run them on saucelabs, with credentials as `SAUCE_USERNAME` and `SAUCE_ACCESS_KEY` environment variable:

```sh
yarn test:e2e:saucelabs
```

More info, including how to write the tests, can be found in its [CONTRIBUTING](./tests/e2e/CONTRIBUTING.md) and [README](./tests/e2e/README.md) files.

### Type checks

Type checks ensure code is correctly typed both for code quality and TypeScript compatibility.
Expand Down

0 comments on commit 4173de7

Please sign in to comment.