Skip to content

Commit

Permalink
Change formulations page accueil
Browse files Browse the repository at this point in the history
Co-authored-by: Fabien Lamarque <[email protected]>
  • Loading branch information
egaillot and Fabinout committed Jun 17, 2024
1 parent 0b5cfa4 commit 33bf1d0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/vues/accueil.pug
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ block styles
block page
if avecConnexionFCPlus
if infosUtilisateur
p Utilisateur courant : #{infosUtilisateur.afficheToi()}
p Félicitations #{infosUtilisateur.afficheToi()}, vous avez réussi à vous authentifier avec eIDAS !
a(href = '/auth/fcplus/destructionSession') Déconnexion
else
p Pas d'utilisateur courant
h1 Choisissez votre cas d'usage
div
p.
FranceConnect+ est la solution proposée par l'État pour renforcer la
Expand Down
4 changes: 2 additions & 2 deletions test/routes/routesBase.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ describe('Le serveur des routes `/`', () => {
axios.get(`http://localhost:${port}/`)
.then((reponse) => {
expect(reponse.status).toBe(200);
expect(reponse.data).toContain("Pas d'utilisateur courant");
expect(reponse.data).toContain("Choisissez votre cas d'usage");
})
.catch(leveErreur)));

Expand All @@ -35,7 +35,7 @@ describe('Le serveur des routes `/`', () => {
return axios.get(`http://localhost:${port}/`)
.then((reponse) => {
expect(reponse.status).toBe(200);
expect(reponse.data).toContain('Utilisateur courant : Sandra Nicouette');
expect(reponse.data).toContain('Sandra Nicouette');
})
.catch(leveErreur);
});
Expand Down

0 comments on commit 33bf1d0

Please sign in to comment.