Skip to content

Commit

Permalink
📝 Add documentation on how to launch cypress tests in README
Browse files Browse the repository at this point in the history
  • Loading branch information
Lysoun committed Nov 14, 2023
1 parent 7235375 commit 9ca1603
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,23 @@ Your database will be provided initial data to enable you to see what the applic
Currently, the server uses Java 17 so please ensure that this is your current Java version.

#### Using IntelliJ
All run configurations are available in the folder [run](run).
All run configurations are available in the folder [run](run).

## Launch tests

### Cypress
Please make sure you ran a `npm install` before trying to launch the Cypress tests. You can either run cypress with or without the GUI.

- With GUI:

```bash
cd modules/ui
npx cypress open
```

- Without GUI:

```bash
cd modules/ui
npx cypress run
```

0 comments on commit 9ca1603

Please sign in to comment.