Skip to content

Commit

Permalink
fix: lbac-2193: cypress global execution time command (#1248)
Browse files Browse the repository at this point in the history
* fix: cypress global execution time command

* feat: update README
  • Loading branch information
kevbarns authored May 21, 2024
1 parent cd319af commit 03387f2
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,27 @@ Cette commande exécutera tous les tests du projet et vous affichera les résult

2. D'avoir lancé l'application car les tests utilisent la base de donnée.

### Exécution des tests cypress

Charger les variables d'environnement :

```bash
export $(cat cypress.env|xargs)
```

Pour ouvrir cypress localement, utilisez la commande suivante :

```bash
yarn e2e
```

Pour executer cypress sur les environnements spécifiques :

```bash
yarn e2e:production
yarn e2e:recette
```

#### Snapshots

Pour mettre à jour les snapshots, utilisez la commande suivante dans `/shared`
Expand Down
1 change: 1 addition & 0 deletions cypress.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { setupNodeEvents } from "./cypress/plugin/configure"
dotenv.config()

export default defineConfig({
defaultCommandTimeout: 20000,
viewportHeight: 768,
viewportWidth: 1366,
e2e: {
Expand Down

0 comments on commit 03387f2

Please sign in to comment.